1
Answer

How to bind dynamically menus and submenus in silverlight 4

vijay rags

vijay rags

13y
4.5k
1
Hi,

    I need to good solution to bind Menus and its Sub Menus Dynamically in Silver Light4. I searched but cant find the exact one. Please help.
 
                    I got a List that contains Menus, Sub Menus. I need to Split it which is root Menu and its Sub Menus.


Thanks,
Vijay
Answers (1)
0
Vulpes

Vulpes

NA 98.3k 1.5m 12y
Unless I'm missing something here, I'd have thought that you should be able to create an XmlDocument and then use its LoadXml method to load the XML string you've received from the serial device without needing to save it to a file first.

You can then create an XPathNavigator by calling the XmlDocument's CreateNavigator method.

So, in code, that would be be something like this:

XmlDocument doc = new XmlDocument();
doc.LoadXml (xmlString);
XPathNavigator nav = doc.CreateNavigator();

Alternatively, you could forget about XPathNavigator and use LINQ to XML which can certainly parse in-memory XML strings.