MultiSelect for UWP
非連結モードでのMultiSelect
データ連結 > 非連結モードでのMultiSelect

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.

C#
コードのコピー
mselect.Items.Insert(1, "John");
mselect.Items.Add("Alex");
mselect.Items.Add("Sean");