ComponentOne MultiSelect for UWP
Data Binding / MultiSelect in Unbound Mode
In This Topic
    MultiSelect in Unbound Mode
    In This Topic

    In unbound mode, you can populate the control with data by generating its content. For generating content, you need to add items either at design time, or at run time.

    The following code populates C1MultiSelect control with customer names when the application loads at run time.

    mselect.Items.Insert(1, "John")
    mselect.Items.Add("Alex")
    mselect.Items.Add("Sean")
    
    mselect.Items.Insert(1, "John");
    mselect.Items.Add("Alex");
    mselect.Items.Add("Sean");