<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: The phenomenon that other UI components are not visible when using Revit API. in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10880911#M21634</link>
    <description>&lt;P&gt;&lt;STRIKE&gt;I really don't how schema presentation works and makes it harder to discover how to make works.&lt;/STRIKE&gt;&lt;/P&gt;&lt;P&gt;The presentation works with the attribute &lt;STRONG&gt;XmlnsPrefix&lt;/STRONG&gt; and &lt;STRONG&gt;XmlnsDefinition&lt;/STRONG&gt; on each assembly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is my project configuration.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;ItemGroup&amp;gt;
  &amp;lt;PackageReference Include="ILRepack.MSBuild.Task" Version="*" IncludeAssets="build; compile" PrivateAssets="All" /&amp;gt;
&amp;lt;/ItemGroup&amp;gt;

&amp;lt;ItemGroup&amp;gt;
  &amp;lt;Reference Include="Telerik.Windows.Controls"&amp;gt;
    &amp;lt;HintPath&amp;gt;.\ref\Telerik.Windows.Controls.dll&amp;lt;/HintPath&amp;gt;
  &amp;lt;/Reference&amp;gt;
  &amp;lt;Reference Include="Telerik.Windows.Controls.Input"&amp;gt;
    &amp;lt;HintPath&amp;gt;.\ref\Telerik.Windows.Controls.Input.dll&amp;lt;/HintPath&amp;gt;
  &amp;lt;/Reference&amp;gt;
  &amp;lt;Reference Include="Telerik.Windows.Data"&amp;gt;
    &amp;lt;HintPath&amp;gt;.\ref\Telerik.Windows.Data.dll&amp;lt;/HintPath&amp;gt;
  &amp;lt;/Reference&amp;gt;
&amp;lt;/ItemGroup&amp;gt;

&amp;lt;Target Name="ILRepacker" AfterTargets="Build"&amp;gt;
  &amp;lt;PropertyGroup&amp;gt;
    &amp;lt;WorkingDirectory&amp;gt;$(MSBuildThisFileDirectory)$(OutDir)&amp;lt;/WorkingDirectory&amp;gt;
  &amp;lt;/PropertyGroup&amp;gt;
  &amp;lt;ItemGroup&amp;gt;
    &amp;lt;InputAssemblies Include="$(TargetPath)" /&amp;gt;
    &amp;lt;InputAssemblies Include="@(ReferencePathWithRefAssemblies)" Condition="'%(filename)' == 'Telerik.Windows.Controls'" /&amp;gt;
    &amp;lt;InputAssemblies Include="@(ReferencePathWithRefAssemblies)" Condition="'%(filename)' == 'Telerik.Windows.Controls.Input'" /&amp;gt;
    &amp;lt;InputAssemblies Include="@(ReferencePathWithRefAssemblies)" Condition="'%(filename)' == 'Telerik.Windows.Data'" /&amp;gt;
  &amp;lt;/ItemGroup&amp;gt;

  &amp;lt;!-- https://github.com/peters/ILRepack.MSBuild.Task/blob/master/src/ILRepack.MSBuild.Task/ILRepack.cs --&amp;gt;
  &amp;lt;ILRepack AllowDuplicateResources="true"
            Union ="false" DebugInfo="true" 
            CopyAttributes="true" AllowMultiple="true" Parallel="true" Internalize="false"
            OutputType="$(OutputType)" MainAssembly="$(AssemblyName).dll"
            OutputAssembly="$(AssemblyName).dll" InputAssemblies="@(InputAssemblies)"
            WilcardInputAssemblies="true" InternalizeExcludeAssemblies="@(InternalizeExcludeAssemblies)"
            WorkingDirectory="$(WorkingDirectory)" /&amp;gt;
&amp;lt;/Target&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The documentation is not so clear but the thing you definitely need to set is the &lt;STRONG&gt;Internalize="false"&lt;/STRONG&gt;, this makes the embedded class public indeed of internal.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRIKE&gt;If you find a way to make the schema presentation works please let me know. &lt;/STRIKE&gt;&lt;/P&gt;&lt;P&gt;By enabling the &lt;STRONG&gt;CopyAttributes="true"&lt;/STRONG&gt; and &lt;STRONG&gt;AllowMultiple ="true"&lt;/STRONG&gt; forces to copy all the attributes including the XmlnsDefinition and XmlnsPrefix to enable the presentation schema.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See yaa!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Edit: Add CopyAttributes="true" AllowMultiple ="true" to copy the XmlnsDefinition and XmlnsPrefix&lt;/EM&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 03 Mar 2022 17:18:50 GMT</pubDate>
    <dc:creator>ricaun</dc:creator>
    <dc:date>2022-03-03T17:18:50Z</dc:date>
    <item>
      <title>The phenomenon that other UI components are not visible when using Revit API.</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10856292#M21620</link>
      <description>&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When developing Revit, I am an Addin that I control in a new window when I click a button.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This window is using an external UI component. (hereinafter referred to as Telerik)&lt;BR /&gt;Telerik assemblies are loaded in OnStartup() .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The A button in the A project is telerik version 1.0.0. (A.addin)&lt;BR /&gt;The B button in the B project is telerik version 1.3.3. (B.Addin)&lt;BR /&gt;(Think of it as creating different project addins.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this case, A button and B button exist as different add-ins in Revit.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Clicking the A button opens a new window, but the Telerik UI is not shown. Example) Window combobox is visible, telerik.combobox is not.&lt;BR /&gt;Clicking the B button opens a new window and displays all UI.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That is, if A and B are loaded, window B is shown and window A is not shown. -&amp;gt; In this case, only the last telerik loaded version will show the UI.&lt;BR /&gt;And if you delete B.Addin and run it when only A is left, you can see A window well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have previously contacted telerik's support center and inquired with revit running.&lt;BR /&gt;The telerik developer's answer speculates that there is a conflict between the revit api mechanism and the telerik mechanism.&lt;BR /&gt;This is very specific and I've never seen it before.&lt;BR /&gt;Also, even if the telerik version is different, the ui should be displayed normally.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can't find a solution to this, please help.&lt;BR /&gt;I posted on this forum, but I also want to ask if there is a separate support center for the revit api.&lt;BR /&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jan 2022 02:44:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10856292#M21620</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-04T02:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: The phenomenon that other UI components are not visible when using Revit API.</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10856932#M21621</link>
      <description>&lt;P&gt;Ensure that you are setting the Window parent properly:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://docs.microsoft.com/en-us/dotnet/api/system.windows.forms.control.parent" target="_blank"&gt;https://docs.microsoft.com/en-us/dotnet/api/system.windows.forms.control.parent&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jan 2022 10:57:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10856932#M21621</guid>
      <dc:creator>jeremy_tammik</dc:creator>
      <dc:date>2022-01-04T10:57:53Z</dc:date>
    </item>
    <item>
      <title>Re: The phenomenon that other UI components are not visible when using Revit API.</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10857083#M21622</link>
      <description>&lt;P&gt;hello.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't know the meaning of your words.&lt;/P&gt;&lt;P&gt;'Ensure the parent of the created window?'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think it has nothing to do with it, but why?&lt;/P&gt;&lt;P&gt;The only difference is that the UI is visible and invisible when used in different versions of different projects. Does this have anything to do with it?&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jan 2022 12:25:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10857083#M21622</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-04T12:25:03Z</dc:date>
    </item>
    <item>
      <title>Re: The phenomenon that other UI components are not visible when using Revit API.</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10857332#M21623</link>
      <description>&lt;P&gt;I don't know how this Telerik works and could be interesting to check these two projects if possible, I suppose is basically the same project with a different Telerik version.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And I know Revit and Windows application does not work very well with two different versions of the same AssemblyName loaded at the same time, usually, the application sees only one version of the Assembly... You could try to show what version of the Telerik the addin is using when is loaded on Revit.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With something like this:&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;typeof(TelerikClass).Assembly.GetName().Version&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Put on the description of the button, or something. =D&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I supposed if the two versions were the same the two plugins works like intended.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this helps, see yaa!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jan 2022 14:32:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10857332#M21623</guid>
      <dc:creator>ricaun</dc:creator>
      <dc:date>2022-01-04T14:32:00Z</dc:date>
    </item>
    <item>
      <title>Re: The phenomenon that other UI components are not visible when using Revit API.</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10857458#M21624</link>
      <description>&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First of all, you can think of telerik as a UI library such as devexpress.&lt;/P&gt;&lt;P&gt;What you mean is that even for non-revit windows applications, if the assembled version is different, the ui is not displayed.&lt;BR /&gt;Is my understanding correct?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this is correct I asked the telerik support developer: "Does telerik show the same UI even if the assembly is loaded with a different version? (when using a program other than Revit)"&lt;BR /&gt;His answer is "regardless where the Telerik assembly is loaded (in one or more projects), you should see the same UI."&lt;BR /&gt;That is, it doesn't matter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Doing the same version you suggested can cause problems later.&lt;/P&gt;&lt;P&gt;For example, A is version 1 and B is number 2.&lt;/P&gt;&lt;P&gt;There were no errors in version A, but there may be cases where certain properties are changed while updating in version B and an error may occur.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Because of this case, I want to display the UI while maintaining the version for each project.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If there is any other way, please let me know more. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jan 2022 15:13:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10857458#M21624</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-04T15:13:22Z</dc:date>
    </item>
    <item>
      <title>Re: The phenomenon that other UI components are not visible when using Revit API.</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10857554#M21625</link>
      <description>&lt;P&gt;I don't know why is not showing the other UI, each library works differently than others, and I supposed Revit Application only sees one Assembly...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does not matter the version are you using, the Application search for the AssemblyName and try to use it, does not matter if is version 1.0.0 or 1.3.3, gonna use the first and ignore the rest. If the library is not prepared for this kind of scenario, gonna have some random behavior.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you are not able to use the same version of the Telerik library on the addin A and B, defiantly some are wrong with the library or with your addin implementation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Definitely gonna be a pain to maintain these addins...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Third-party library always is a pain to work with.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jan 2022 15:49:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10857554#M21625</guid>
      <dc:creator>ricaun</dc:creator>
      <dc:date>2022-01-04T15:49:18Z</dc:date>
    </item>
    <item>
      <title>Re: The phenomenon that other UI components are not visible when using Revit API.</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10858441#M21626</link>
      <description>&lt;P&gt;Ummm... I think you misunderstood because I didn't explain enough.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have several versions in use, so I think the version is important.(UI library version)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When add-ins A and B use the same version of telerik library, the UI is displayed normally.&lt;/P&gt;&lt;P&gt;However, if the versions are different, 1.0.0 and 1.3.3 will recognize that the last assembly is loaded and only one will be displayed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This means that if you use the two assemblies in different window applications, the UI will look the same for both. But in Revit, I say, not so.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;About this, I contacted the telerik development support team and the answer was that it is speculation that there is a conflict between Revit and the mechanism, and that this is the first case.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jan 2022 01:07:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10858441#M21626</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-05T01:07:45Z</dc:date>
    </item>
    <item>
      <title>Re: The phenomenon that other UI components are not visible when using Revit API.</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10858530#M21627</link>
      <description>&lt;P&gt;I understand the situation! The problem is you are trying to load two different versions of the same library in a Windows application, you are not supposed to do that.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Revit probably only loads one of them, the windows application does not need to load the other Assembly if already is load. If the AssemblyName is the same the version does not matter.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;You could try to look on the &lt;STRONG&gt;AppDomain.GetAssemblies&lt;/STRONG&gt; and check if is loaded the version 1.0.0 and 1.3.3.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;You said "&lt;EM&gt;Telerik assemblies are loaded in OnStartup()&lt;/EM&gt;" I really don't know how are you doing this load, something sneak!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Without a source code is really hard to discover how to fix the issue.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jan 2022 02:45:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10858530#M21627</guid>
      <dc:creator>ricaun</dc:creator>
      <dc:date>2022-01-05T02:45:03Z</dc:date>
    </item>
    <item>
      <title>Re: The phenomenon that other UI components are not visible when using Revit API.</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10858629#M21628</link>
      <description>&lt;P&gt;I made a sample file.&lt;/P&gt;&lt;P&gt;Can you confirm if it's ok?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As of 2021 Revit, I have Project.sln and Bproject.sln.&lt;BR /&gt;Just set the addin path and move the folder.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is like the video I attached.&lt;/P&gt;&lt;P&gt;The source code is very simple, so even if you do not run it directly, you can check the assembly loaded part.&lt;/P&gt;&lt;P&gt;(Sample files will be deleted after about a week.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ps.&amp;nbsp;I have confirmed that the AssemblyName is the same. When debugging only one project, what version is loaded with GetAssemblies is checked.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jan 2022 00:58:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10858629#M21628</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-13T00:58:18Z</dc:date>
    </item>
    <item>
      <title>Re: The phenomenon that other UI components are not visible when using Revit API.</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10874165#M21629</link>
      <description>&lt;P&gt;Thanks for sharing the project,&lt;/P&gt;&lt;P&gt;I try a lot of things and didn't have any success, I supposed is something related to the library, how the library loads the UI elements.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I remove the Assembly.Load and use some Class in the library and get the assembly:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;_ = typeof(Telerik.Windows.Controls.RadButton).Assembly;
_ = typeof(Telerik.Windows.Controls.Input.ParseMode).Assembly;
_ = typeof(Telerik.Windows.Data.Data.Hierarchy.IHierarchyDescriptor).Assembly;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This does not work, unfortunately, the Application loads two versions of the same Telerik library, and by the looks UI breaks if has more the one library load on the main Application (Revit).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Check the video I force to load another Telerik and the UI breaks..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;div class="video-embed-center video-embed"&gt;&lt;iframe class="embedly-embed" src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2F2qW-rWIc-MI%3Ffeature%3Doembed&amp;amp;display_name=YouTube&amp;amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3D2qW-rWIc-MI&amp;amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2F2qW-rWIc-MI%2Fhqdefault.jpg&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube" width="200" height="112" scrolling="no" title="Revit and Telerik Library 2 Version Problem" frameborder="0" allow="autoplay; fullscreen; encrypted-media; picture-in-picture;" allowfullscreen="true"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I guess the best thing to do is not use this UI libray, definitely gonna break if some other addin uses a different version...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See yaa&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jan 2022 12:43:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10874165#M21629</guid>
      <dc:creator>ricaun</dc:creator>
      <dc:date>2022-01-12T12:43:22Z</dc:date>
    </item>
    <item>
      <title>Re: The phenomenon that other UI components are not visible when using Revit API.</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10875837#M21630</link>
      <description>&lt;P&gt;Thank you very much for giving us another test and letting us know the results.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to avoid this too, but it can happen in unavoidable circumstances. (For example, when using an add-in with another company, the teleric version is different)&lt;/P&gt;&lt;P&gt;We wanted to eliminate the root cause... but we can't.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jan 2022 00:57:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10875837#M21630</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-13T00:57:08Z</dc:date>
    </item>
    <item>
      <title>Re: The phenomenon that other UI components are not visible when using Revit API.</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10877295#M21631</link>
      <description>&lt;P&gt;One solution could be to change the &lt;STRONG&gt;AssemblyName&lt;/STRONG&gt; of your Telerik, I don't know if gonna work but your Telerik library gonna be unique from the others.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was looking for the &lt;A title="ILRepack.Lib.MSBuild.Task" href="https://github.com/ravibpatel/ILRepack.Lib.MSBuild.Task" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;ILRepack.Lib.MSBuild.Task&lt;/STRONG&gt; &lt;/A&gt;another time to embed the library inside the main dll.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Theoretically is possible to send all the data of the 3 Telerik libraries to one dll with your own AssemblyName.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This could work but need to test.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jan 2022 15:00:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10877295#M21631</guid>
      <dc:creator>ricaun</dc:creator>
      <dc:date>2022-01-13T15:00:22Z</dc:date>
    </item>
    <item>
      <title>Re: The phenomenon that other UI components are not visible when using Revit API.</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10877869#M21632</link>
      <description>&lt;P&gt;The &lt;A title="ILRepack.Lib.MSBuild.Task" href="https://github.com/ravibpatel/ILRepack.Lib.MSBuild.Task" target="_blank" rel="noopener nofollow noreferrer"&gt;&lt;STRONG&gt;ILRepack.Lib.MSBuild.Task&lt;/STRONG&gt; &lt;/A&gt;works...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I create a new Telerik.Windows.dll with all three DLLs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;div class="video-embed-center video-embed"&gt;&lt;iframe class="embedly-embed" src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2Fqg7qRksq76M%3Ffeature%3Doembed&amp;amp;display_name=YouTube&amp;amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3Dqg7qRksq76M&amp;amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2Fqg7qRksq76M%2Fhqdefault.jpg&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube" width="200" height="112" scrolling="no" title="Revit and Telerik Library 2 Version Problem - Solution" frameborder="0" allow="autoplay; fullscreen; encrypted-media; picture-in-picture;" allowfullscreen="true"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The C project works fine, I could send you the assembly so you could test on some complex project.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I'm supposed gonna work like intended and some other Telerik library not gonna interfere with your application.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This could be useful to create your own custom package.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See yaa!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jan 2022 18:22:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10877869#M21632</guid>
      <dc:creator>ricaun</dc:creator>
      <dc:date>2022-01-13T18:22:36Z</dc:date>
    </item>
    <item>
      <title>Re: The phenomenon that other UI components are not visible when using Revit API.</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10878604#M21633</link>
      <description>&lt;P&gt;Thank you so much!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I understood that Libs are bundled into one DLL and used.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can I use this just by looking at the documentation? Or do you have any additional settings?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Because my xaml design uses a lot of telerik dll, but it is unified with schema presentation, so I need to test it. (8 dlls)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again! There seems to be a solution. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jan 2022 01:24:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10878604#M21633</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-14T01:24:35Z</dc:date>
    </item>
    <item>
      <title>Re: The phenomenon that other UI components are not visible when using Revit API.</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10880911#M21634</link>
      <description>&lt;P&gt;&lt;STRIKE&gt;I really don't how schema presentation works and makes it harder to discover how to make works.&lt;/STRIKE&gt;&lt;/P&gt;&lt;P&gt;The presentation works with the attribute &lt;STRONG&gt;XmlnsPrefix&lt;/STRONG&gt; and &lt;STRONG&gt;XmlnsDefinition&lt;/STRONG&gt; on each assembly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is my project configuration.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;ItemGroup&amp;gt;
  &amp;lt;PackageReference Include="ILRepack.MSBuild.Task" Version="*" IncludeAssets="build; compile" PrivateAssets="All" /&amp;gt;
&amp;lt;/ItemGroup&amp;gt;

&amp;lt;ItemGroup&amp;gt;
  &amp;lt;Reference Include="Telerik.Windows.Controls"&amp;gt;
    &amp;lt;HintPath&amp;gt;.\ref\Telerik.Windows.Controls.dll&amp;lt;/HintPath&amp;gt;
  &amp;lt;/Reference&amp;gt;
  &amp;lt;Reference Include="Telerik.Windows.Controls.Input"&amp;gt;
    &amp;lt;HintPath&amp;gt;.\ref\Telerik.Windows.Controls.Input.dll&amp;lt;/HintPath&amp;gt;
  &amp;lt;/Reference&amp;gt;
  &amp;lt;Reference Include="Telerik.Windows.Data"&amp;gt;
    &amp;lt;HintPath&amp;gt;.\ref\Telerik.Windows.Data.dll&amp;lt;/HintPath&amp;gt;
  &amp;lt;/Reference&amp;gt;
&amp;lt;/ItemGroup&amp;gt;

&amp;lt;Target Name="ILRepacker" AfterTargets="Build"&amp;gt;
  &amp;lt;PropertyGroup&amp;gt;
    &amp;lt;WorkingDirectory&amp;gt;$(MSBuildThisFileDirectory)$(OutDir)&amp;lt;/WorkingDirectory&amp;gt;
  &amp;lt;/PropertyGroup&amp;gt;
  &amp;lt;ItemGroup&amp;gt;
    &amp;lt;InputAssemblies Include="$(TargetPath)" /&amp;gt;
    &amp;lt;InputAssemblies Include="@(ReferencePathWithRefAssemblies)" Condition="'%(filename)' == 'Telerik.Windows.Controls'" /&amp;gt;
    &amp;lt;InputAssemblies Include="@(ReferencePathWithRefAssemblies)" Condition="'%(filename)' == 'Telerik.Windows.Controls.Input'" /&amp;gt;
    &amp;lt;InputAssemblies Include="@(ReferencePathWithRefAssemblies)" Condition="'%(filename)' == 'Telerik.Windows.Data'" /&amp;gt;
  &amp;lt;/ItemGroup&amp;gt;

  &amp;lt;!-- https://github.com/peters/ILRepack.MSBuild.Task/blob/master/src/ILRepack.MSBuild.Task/ILRepack.cs --&amp;gt;
  &amp;lt;ILRepack AllowDuplicateResources="true"
            Union ="false" DebugInfo="true" 
            CopyAttributes="true" AllowMultiple="true" Parallel="true" Internalize="false"
            OutputType="$(OutputType)" MainAssembly="$(AssemblyName).dll"
            OutputAssembly="$(AssemblyName).dll" InputAssemblies="@(InputAssemblies)"
            WilcardInputAssemblies="true" InternalizeExcludeAssemblies="@(InternalizeExcludeAssemblies)"
            WorkingDirectory="$(WorkingDirectory)" /&amp;gt;
&amp;lt;/Target&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The documentation is not so clear but the thing you definitely need to set is the &lt;STRONG&gt;Internalize="false"&lt;/STRONG&gt;, this makes the embedded class public indeed of internal.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRIKE&gt;If you find a way to make the schema presentation works please let me know. &lt;/STRIKE&gt;&lt;/P&gt;&lt;P&gt;By enabling the &lt;STRONG&gt;CopyAttributes="true"&lt;/STRONG&gt; and &lt;STRONG&gt;AllowMultiple ="true"&lt;/STRONG&gt; forces to copy all the attributes including the XmlnsDefinition and XmlnsPrefix to enable the presentation schema.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See yaa!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Edit: Add CopyAttributes="true" AllowMultiple ="true" to copy the XmlnsDefinition and XmlnsPrefix&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Mar 2022 17:18:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10880911#M21634</guid>
      <dc:creator>ricaun</dc:creator>
      <dc:date>2022-03-03T17:18:50Z</dc:date>
    </item>
    <item>
      <title>Re: The phenomenon that other UI components are not visible when using Revit API.</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10965064#M21635</link>
      <description>&lt;P&gt;Hello @Anonymous&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was messing around and found a way to add the presentation on the bundle dll.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You could add on the AssemblyInfo.cs the following codes to enable the presentation.&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;using System.Windows.Markup;
[assembly: XmlnsDefinition("http://schemas.telerik.com/2008/xaml/presentation", "Telerik.Windows.Shapes")]
[assembly: XmlnsDefinition("http://schemas.telerik.com/2008/xaml/presentation", "Telerik.Windows.Controls")]
[assembly: XmlnsDefinition("http://schemas.telerik.com/2008/xaml/presentation", "Telerik.Windows.Controls.TransitionEffects")]
[assembly: XmlnsDefinition("http://schemas.telerik.com/2008/xaml/presentation", "Telerik.Windows.Controls.Animation")]
[assembly: XmlnsDefinition("http://schemas.telerik.com/2008/xaml/presentation", "Telerik.Windows.Controls.DragDrop")]
[assembly: XmlnsDefinition("http://schemas.telerik.com/2008/xaml/presentation", "Telerik.Windows.Controls.Behaviors")]
[assembly: XmlnsDefinition("http://schemas.telerik.com/2008/xaml/presentation", "Telerik.Windows.Controls.Primitives")]
[assembly: XmlnsDefinition("http://schemas.telerik.com/2008/xaml/presentation", "Telerik.Windows.Controls.Legend")]
[assembly: XmlnsDefinition("http://schemas.telerik.com/2008/xaml/presentation", "Telerik.Windows.DragDrop")]
[assembly: XmlnsDefinition("http://schemas.telerik.com/2008/xaml/presentation", "Telerik.Windows.DragDrop.Behaviors")]
[assembly: XmlnsDefinition("http://schemas.telerik.com/2008/xaml/presentation", "Telerik.Windows.Input.Touch")]
[assembly: XmlnsDefinition("http://schemas.telerik.com/2008/xaml/presentation", "Telerik.Windows.Data")]
[assembly: XmlnsPrefix("http://schemas.telerik.com/2008/xaml/presentation", "telerik")]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can find the Attributes using this code on the Assembly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;/// &amp;lt;summary&amp;gt;
/// Get &amp;lt;see cref="XmlnsPrefixAttribute"/&amp;gt; and &amp;lt;see cref="XmlnsDefinitionAttribute"/&amp;gt; as assembly format.
/// &amp;lt;/summary&amp;gt;
/// &amp;lt;param name="assembly"&amp;gt;&amp;lt;/param&amp;gt;
/// &amp;lt;returns&amp;gt;&amp;lt;/returns&amp;gt;
private IList&amp;lt;string&amp;gt; GetXmlnsCustomAttributes(Assembly assembly)
{
    var attributes = new List&amp;lt;string&amp;gt;();
    foreach (var attr in assembly.GetCustomAttributes&amp;lt;XmlnsPrefixAttribute&amp;gt;())
    {
        string prefix = $"[assembly: XmlnsPrefix(\"{attr.XmlNamespace}\", \"{attr.Prefix}\")]";
        attributes.Add(prefix);
    }
    foreach (var attr in assembly.GetCustomAttributes&amp;lt;XmlnsDefinitionAttribute&amp;gt;())
    {
        string definition = $"[assembly: XmlnsDefinition(\"{attr.XmlNamespace}\", \"{attr.ClrNamespace}\")]";
        attributes.Add(definition);
    }
    return attributes;
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See yaa!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Feb 2022 14:04:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10965064#M21635</guid>
      <dc:creator>ricaun</dc:creator>
      <dc:date>2022-02-22T14:04:45Z</dc:date>
    </item>
    <item>
      <title>Re: The phenomenon that other UI components are not visible when using Revit API.</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10980981#M21636</link>
      <description>&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've been busy and haven't been able to properly verify it's working yet. sorry.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And I'm trying to use ILMerge rather than ILRepack.MSBuild.Task with your inspiration.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I understand how to add AssemblyInfo. But how can I load it into xaml?&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;&amp;lt;Window x:Class:~~~~~
      xmlns="~~~~" 
      ...
      xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"&amp;gt;
&amp;lt;telerik:RadGridview ... /&amp;gt;
&amp;lt;telerik:RadComboBox ... /&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;If I simply define it in asseblyinfo, is there any problem if I use it as above? Can't test because the merged dll file doesn't exist yet.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for replying even after a while &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Mar 2022 05:22:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10980981#M21636</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-03T05:22:07Z</dc:date>
    </item>
    <item>
      <title>Re: The phenomenon that other UI components are not visible when using Revit API.</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10981749#M21637</link>
      <description>&lt;P&gt;Should work fine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I changed the reference on the AProject and works like a champion, didn't need to change any &lt;EM&gt;xaml&lt;/EM&gt; file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gonna send my compiled version in private.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See yaa&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Mar 2022 14:48:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10981749#M21637</guid>
      <dc:creator>ricaun</dc:creator>
      <dc:date>2022-03-03T14:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: The phenomenon that other UI components are not visible when using Revit API.</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10982020#M21638</link>
      <description>&lt;P&gt;Found a better way without copying any of the Xmlns Attributes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On the &lt;STRONG&gt;ILRepack&lt;/STRONG&gt; I kinda miss the &lt;STRONG&gt;AllowMultiple&lt;/STRONG&gt; option with the &lt;STRONG&gt;CopyAttributes &lt;/STRONG&gt;that forces copy the attributes of the &lt;STRONG&gt;InputAssemblies&lt;/STRONG&gt; to the &lt;STRONG&gt;OutputAssembly.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gonna edit the post and add missing options.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Nice.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Mar 2022 17:08:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10982020#M21638</guid>
      <dc:creator>ricaun</dc:creator>
      <dc:date>2022-03-03T17:08:42Z</dc:date>
    </item>
    <item>
      <title>Re: The phenomenon that other UI components are not visible when using Revit API.</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10982879#M21639</link>
      <description>&lt;P&gt;Thanks to the test file, it was easier to check.&lt;/P&gt;&lt;P&gt;As a result, it works exactly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I have enough time, I will use ILRepack first and then apply it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you tell me how you did the assembly loading via static method?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your interest in my post despite the passage of time. ^^b&lt;/P&gt;</description>
      <pubDate>Fri, 04 Mar 2022 01:19:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/the-phenomenon-that-other-ui-components-are-not-visible-when/m-p/10982879#M21639</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-04T01:19:13Z</dc:date>
    </item>
  </channel>
</rss>

