Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Help needed implementing LoadFromXML for a DockControl in WPF (Read 2751 times)
MavinTech
YaBB Newbies
*
Offline


I Love MindFusion!

Posts: 19
Joined: Jul 30th, 2020
Help needed implementing LoadFromXML for a DockControl in WPF
Mar 15th, 2023 at 2:19pm
Print Post  
I am working with a WPF DockControl element.  I have a DockControl with multiple DockItems in it and called SaveToXml and it created an XML file, as expected.  When I call the LoadFromXml, nothing appears to happen.  I have read that I may need to override the load somehow and recreate the dockitems.  In the end, I need the user of the control to be able to manipulate the DockItems to their desired configuration, and then load that back up the next time they use the control.  I have included the XML file that the Save created.
  

DiagramLayoutXML.XML ( 19 KB | 44 Downloads )
Back to top
 
IP Logged
 
Slavcho
God Member
*****
Offline


tech.support

Posts: 3153
Joined: Oct 19th, 2005
Re: Help needed implementing LoadFromXML for a DockControl in WPF
Reply #1 - Mar 15th, 2023 at 4:42pm
Print Post  
Try handling the ItemLoading event. The DockControl sample project from WPF Pack distribution handles that to implement the "Load Layout" menu.

Regards,
Slavcho
Mindfusion
  
Back to top
 
IP Logged
 
MavinTech
YaBB Newbies
*
Offline


I Love MindFusion!

Posts: 19
Joined: Jul 30th, 2020
Re: Help needed implementing LoadFromXML for a DockControl in WPF
Reply #2 - Mar 16th, 2023 at 5:08am
Print Post  
Ok, that now works, thank you. 

Is there a way to load the DockControl from an XML string that is read in from a database rather than from an external file?
  
Back to top
 
IP Logged
 
Slavcho
God Member
*****
Offline


tech.support

Posts: 3153
Joined: Oct 19th, 2005
Re: Help needed implementing LoadFromXML for a DockControl in WPF
Reply #3 - Mar 17th, 2023 at 7:14am
Print Post  
try this -

Code
Select All
var xmlDoc = new XmlDocument();
xmlDoc.LoadXml(xmlString);
dock.LoadFromXml(xmlDoc); 



Regards,
Slavcho
Mindfusion
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint