<?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 Icons Disappear in my Autocad App in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/icons-disappear-in-my-autocad-app/m-p/9650790#M18939</link>
    <description>&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;I'm a newbie programmer for everything related to c#, WPF and Autocad, but what I've developed up to now is working well and my app is growing to unexpected level and this thanks to this forum and the help of some of you.&lt;/P&gt;&lt;P&gt;Now, I would like to collect my apps in a new wpf App I developed (developing) in a new project (as WPF project) and now I'm going to merge into my autocad solution.&lt;/P&gt;&lt;P&gt;This is done in order to have the Autocad solution structured as follow:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- SOLUTION&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; - PROJECT: Autocad App with just myCommand.cs&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; - PROJECT: Autocad Libraries (the collection of methods for interacting with Autocad)&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; - PROJECT: Project1&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; - PROJECT: Project2&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; - PROJECT: Project3.... and so on&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the first project collects all CommandMethods and is structured as below:&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;        [CommandMethod("PROJECT1",CommandFlags.Modal)]
        public void MyProject1() 
        {
            Document doc = Application.DocumentManager.MdiActiveDocument;
            Editor ed;
            if (doc != null)
            {
                ed = doc.Editor;
                Project1 project1 = new Project1();
                AcAp.ShowModalWindow(project1);
            }
        }

        [CommandMethod("PROJECT2",CommandFlags.Modal)]
        public void MyProject2() 
        {
            Document doc = Application.DocumentManager.MdiActiveDocument;
            Editor ed;
            if (doc != null)
            {
                ed = doc.Editor;
                Project2 project2 = new Project2();
                AcAp.ShowModalWindow(project2);
            }
        }

//end so on....&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;each project is referenced in the project AutocadApp in order to load it in the Autocad environment.&lt;/P&gt;&lt;P&gt;Now this is the matter: if I run my app (as executable) in windows environment I can see my icons, if I run my app in Autocad environment (as dll) my icons disappear. (see the pics).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What is going on?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="win1.PNG" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/798387i4E00BB066F143734/image-size/medium?v=v2&amp;amp;px=400" role="button" title="win1.PNG" alt="win1.PNG" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="win2.PNG" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/798388i68D52761EDD6E83F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="win2.PNG" alt="win2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 23 Jul 2020 07:46:59 GMT</pubDate>
    <dc:creator>micle.space</dc:creator>
    <dc:date>2020-07-23T07:46:59Z</dc:date>
    <item>
      <title>Icons Disappear in my Autocad App</title>
      <link>https://forums.autodesk.com/t5/net-forum/icons-disappear-in-my-autocad-app/m-p/9650790#M18939</link>
      <description>&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;I'm a newbie programmer for everything related to c#, WPF and Autocad, but what I've developed up to now is working well and my app is growing to unexpected level and this thanks to this forum and the help of some of you.&lt;/P&gt;&lt;P&gt;Now, I would like to collect my apps in a new wpf App I developed (developing) in a new project (as WPF project) and now I'm going to merge into my autocad solution.&lt;/P&gt;&lt;P&gt;This is done in order to have the Autocad solution structured as follow:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- SOLUTION&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; - PROJECT: Autocad App with just myCommand.cs&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; - PROJECT: Autocad Libraries (the collection of methods for interacting with Autocad)&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; - PROJECT: Project1&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; - PROJECT: Project2&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; - PROJECT: Project3.... and so on&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the first project collects all CommandMethods and is structured as below:&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;        [CommandMethod("PROJECT1",CommandFlags.Modal)]
        public void MyProject1() 
        {
            Document doc = Application.DocumentManager.MdiActiveDocument;
            Editor ed;
            if (doc != null)
            {
                ed = doc.Editor;
                Project1 project1 = new Project1();
                AcAp.ShowModalWindow(project1);
            }
        }

        [CommandMethod("PROJECT2",CommandFlags.Modal)]
        public void MyProject2() 
        {
            Document doc = Application.DocumentManager.MdiActiveDocument;
            Editor ed;
            if (doc != null)
            {
                ed = doc.Editor;
                Project2 project2 = new Project2();
                AcAp.ShowModalWindow(project2);
            }
        }

//end so on....&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;each project is referenced in the project AutocadApp in order to load it in the Autocad environment.&lt;/P&gt;&lt;P&gt;Now this is the matter: if I run my app (as executable) in windows environment I can see my icons, if I run my app in Autocad environment (as dll) my icons disappear. (see the pics).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What is going on?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="win1.PNG" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/798387i4E00BB066F143734/image-size/medium?v=v2&amp;amp;px=400" role="button" title="win1.PNG" alt="win1.PNG" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="win2.PNG" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/798388i68D52761EDD6E83F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="win2.PNG" alt="win2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jul 2020 07:46:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/icons-disappear-in-my-autocad-app/m-p/9650790#M18939</guid>
      <dc:creator>micle.space</dc:creator>
      <dc:date>2020-07-23T07:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: Icons Disappear in my Autocad App</title>
      <link>https://forums.autodesk.com/t5/net-forum/icons-disappear-in-my-autocad-app/m-p/9651784#M18940</link>
      <description>&lt;P&gt;Some thoughts on your question:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. While .Net framework allows a project to share a component from EXE project by adding reference to that EXE project. In general, it is not a good practice. I assume (and do hope) that in your simplified code, "Project1" or "Project2" refer to a WPF Window (View) in the EXE projects, but not the EXE project's MainWindow (well, technically, being MainWindow or not itself isn't the issue. Rather, the business functionality of EXE's main view and a dialog view in AutoCAD would mostly be quite different).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ideally, if an EXE app and your CAD app want to share UI components, it would be better to place the shared UI components, be it WPF Window, or WPF UserControl, in a separated DLL project, and then let CAD App project and the EXE project to reference the UI dll project.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. If you use WPF, it will be very likely (or ought to be) that you use MVVM pattern. That is another reason to separate shared view components from Acad add-in and EXE project into its own project. then in either Acad addin or EXE, you may have different Model/ViewModel (more likely, different ViewModel) to work with the same view components to deal with possible workflow difference in AutoCAD and EXE app. IMO, it would not make much sense to use WPF, if MVVM pattern is not used, in most cases.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3. As you have already known that when showing UI in AutoCAD, you should use&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Application.ShowModal[Modeless]Window()&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;instead of&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Window.Show[ShowDialog]()&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here, AutoCAD API does something behind of scene: it replaces the view's icon with AutoCAD's icon (or AutoCAD vertical's icon), so that the Acad add-in would look more like Acad's native view. So, if you need to force your own icon, you could handle the view's "Loaded" event (and/or "Shown" even, if the view is Win form) and set your own icon there. Since you use WPF, it may also depend on how you load the form icon (binding?).&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jul 2020 15:59:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/icons-disappear-in-my-autocad-app/m-p/9651784#M18940</guid>
      <dc:creator>norman.yuan</dc:creator>
      <dc:date>2020-07-23T15:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: Icons Disappear in my Autocad App</title>
      <link>https://forums.autodesk.com/t5/net-forum/icons-disappear-in-my-autocad-app/m-p/9652968#M18941</link>
      <description>&lt;P&gt;Yes Norman you are right, in the sake of coinciseness I committed a&amp;nbsp; carelessness... in my code solution is solution, projects are projects but in commandMethod I call the main window of that project, so the sample has to be corrected to:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&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;....
MainWinProject1 mainWinproject1 = new MainWinProject1();
                AcAp.ShowModalWindow(mainWinproject1);
....&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, summarizing, I start to develope my UI as win executable project (no Autocad features), when I'm sure that the behaviour with user input is ok (for example binding) I re-compile it as DLL, import the project in my autocad solution and refer the DLL to the autocad main project (CommandMethod descibed before).&lt;/P&gt;&lt;P&gt;At this point I can develop the autocad methods for my new application, and moreover I have all my apps in only one solution so I can update my Apps to the future Autocad releases all in once.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;At the beginning I tried MVVM pattern, but is too difficult for my knowledge, next future...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now to get back to main question, just a bit of quote:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;&lt;EM&gt;Here, AutoCAD API does something behind of scene: it replaces the view's icon with AutoCAD's icon (or AutoCAD vertical's icon), so that the Acad add-in would look more like Acad's native view. So, if you need to force your own icon, you could handle the view's "Loaded" event (and/or "Shown" even, if the view is Win form) and set your own icon there. Since you use WPF, it may also depend on how you load the form icon (binding?).&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is a sample of how I load the icons in the Menu:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;                &amp;lt;MenuItem Header="_Apri" Name="mnu_Open" Click="Mnu_Click" &amp;gt;
                    &amp;lt;MenuItem.Icon&amp;gt;
                        &amp;lt;Image Source="/Images/folder-3.png"/&amp;gt;
                    &amp;lt;/MenuItem.Icon&amp;gt;
                &amp;lt;/MenuItem&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The folder "Images" is a folder in the local project.&amp;nbsp; (in the MainProject the DLL is imported with&amp;nbsp; "Copy Local = True").&lt;/P&gt;&lt;P&gt;I'm not a IconAddicted, so my question is just for understanding if my app is running properly or not, but your words raise my nosiness: does Autodesk release a xaml ResourceDictionary in order to set the UIs with autocad style?&lt;/P&gt;&lt;P&gt;if the Autocad API is so apprehensive to substitute (in my case delete) icons.... why don't collect the main win controls for a Autocad style?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again for your attention, my apps are working fine surely and mainly for your inputs&amp;nbsp; with or without icons.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jul 2020 06:31:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/icons-disappear-in-my-autocad-app/m-p/9652968#M18941</guid>
      <dc:creator>micle.space</dc:creator>
      <dc:date>2020-07-24T06:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: Icons Disappear in my Autocad App</title>
      <link>https://forums.autodesk.com/t5/net-forum/icons-disappear-in-my-autocad-app/m-p/9653365#M18942</link>
      <description>&lt;P&gt;ops... two dots lack in my Source path string:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;                &amp;lt;MenuItem Header="_Apri" Name="mnu_Open" Click="Mnu_Click" &amp;gt;
                    &amp;lt;MenuItem.Icon&amp;gt;
                        &amp;lt;Image Source="../Images/folder-3.png"/&amp;gt;
                    &amp;lt;/MenuItem.Icon&amp;gt;
                &amp;lt;/MenuItem&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;now it works properly also in Autocad environment.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jul 2020 11:41:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/icons-disappear-in-my-autocad-app/m-p/9653365#M18942</guid>
      <dc:creator>micle.space</dc:creator>
      <dc:date>2020-07-24T11:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: Icons Disappear in my Autocad App</title>
      <link>https://forums.autodesk.com/t5/net-forum/icons-disappear-in-my-autocad-app/m-p/9653921#M18943</link>
      <description>&lt;P&gt;Ah, I thought you were referring to the icon of the window/form, thus I said "...&lt;SPAN&gt;AutoCAD API does something behind of scene: it replaces the view's icon with AutoCAD's icon...". Now that your issue is with WPF binding could not find &amp;lt;Image...&amp;gt; control's source, this is a different issue: the reason is in the XAML, the "Source" attribute for &amp;lt;Image...&amp;gt; is not good for the Acad Add-in DLL. You see, the Acad add-in dll is not an independent EXE application, it is just a part of acad.exe application, and ideally, the add-in dll SHOULD BE in the same folder as acad.exe in order to make the&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;lt;Image Source="../Images/xxxx.png" /&amp;gt; work, as long as "../images" folder exists and the *.png file exists when AutoCAD runs. However, AutoCAD .NET API allows AutoCAD to load .ENT assemblies from different locations (loading its own accoremgd/acbdmgd/acmgd.dll from Acad location, and custom dlls from different location) So, you need to specify "Source" correctly for &amp;lt;Image.../&amp;gt;. As matter of fact, this is one of the frequently asked questions, if you search the Internet.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;There was a recent discussion on this in this forum, which should help you:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://forums.autodesk.com/t5/net/wpf-resources-can-t-be-loaded-correctly-in-autocad/m-p/9324422#M64936" target="_blank" rel="noopener"&gt;https://forums.autodesk.com/t5/net/wpf-resources-can-t-be-loaded-correctly-in-autocad/m-p/9324422#M64936&lt;/A&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The other approach I use for my WDF UI in AutoCAD add-in is to include the images in the DLL project's resources (i.e. embed the images in the compiled dll), so that my add-in is a "pure" dll, no need to deploy the image separately in a dedicated folder. Then, in my ViewModel code, I actually read the images from ResourceManager into a bindable properties of the ViewModel, so the image can be bound to the image control, like:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;lt;Image Source="{Binding MyImage} /&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Hope this helps a bit.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jul 2020 16:24:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/icons-disappear-in-my-autocad-app/m-p/9653921#M18943</guid>
      <dc:creator>norman.yuan</dc:creator>
      <dc:date>2020-07-24T16:24:13Z</dc:date>
    </item>
    <item>
      <title>Re: Icons Disappear in my Autocad App</title>
      <link>https://forums.autodesk.com/t5/net-forum/icons-disappear-in-my-autocad-app/m-p/9655576#M18944</link>
      <description>&lt;P&gt;I have to tell you the true, I started programming including images into the resources content, then a day I read in a blog (general wpf/c# programming): "is a good practice to create a directory and copy pictures then load them by string connection...", but for sure now, I will follow your advice and I will come back to the old habits.&lt;/P&gt;</description>
      <pubDate>Sun, 26 Jul 2020 06:58:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/icons-disappear-in-my-autocad-app/m-p/9655576#M18944</guid>
      <dc:creator>micle.space</dc:creator>
      <dc:date>2020-07-26T06:58:03Z</dc:date>
    </item>
    <item>
      <title>Re: Icons Disappear in my Autocad App</title>
      <link>https://forums.autodesk.com/t5/net-forum/icons-disappear-in-my-autocad-app/m-p/9655679#M18945</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5201989"&gt;@micle.space&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I have to tell you the true, I started programming including images into the resources content, then a day I read in a blog (general wpf/c# programming): &lt;FONT color="#FF0000"&gt;&lt;EM&gt;"is a good practice to create a directory and copy pictures then load them by string connection..."&lt;/EM&gt;&lt;/FONT&gt;, but for sure now, I will follow your advice and I will come back to the old habits.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;If the output of the development is an EXE app, which is usually package for deployment, then it is "good practice". But for AutoCAD add-in, I'd rather not having extra folder for extra resources (images for UI), in most cases, especially for light-weight add-ins. It is just me, maybe.&lt;/P&gt;</description>
      <pubDate>Sun, 26 Jul 2020 10:47:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/icons-disappear-in-my-autocad-app/m-p/9655679#M18945</guid>
      <dc:creator>norman.yuan</dc:creator>
      <dc:date>2020-07-26T10:47:34Z</dc:date>
    </item>
  </channel>
</rss>

