You can easily populate RadListBox from XML. To populate RadListBox from an XML
file use the LoadContentFile
method. To populate RadListBox from XML
string use the LoadXml
method.
C#
RadListBox1.LoadContentFile("ListBox.xml");
RadListBox2.LoadXml("<Items><Item Text=\"One\" /><Item Text=\"Two\" /></Items>");
VB.NET
RadListBox1.LoadContentFile("ListBox.xml")
RadListBox2.LoadXml("<Items><Item Text=\"One\" /><Item Text=\"Two\" /></Items>")