RadListBox provides rich server-side API. It allows the developer to easily add,
        remove or disable items.
    
    
        To add an item to the combo, simply create a new RadListBoxItem instance and add
        it to the Items collection of the combo:
    
    
        C#
    RadListBox1.Items.Add(new RadListBoxItem("Some Item"));
    
        VB.NET
    RadListBox1.Items.Add(New RadListBoxItem("Some Item"))
    
        To remove an item, simply call the Remove() method of the item.
    
    
        To disable an item, just set the Enabled property of the combo to 
            false.