【发布时间】:2021-05-21 01:11:16
【问题描述】:
我已使用以下代码在 radDropDownList 中启用多项选择。
radDropDownList1.DropDownListElement.SelectionMode = SelectionMode.MultiExtended;
此列表有 10 个选项,每个用户可以选择其中的 1 到 10 个
现在我想检索我保存在数组列表中的用户选择
ArrayList UserChoose = new ArrayList();
UserChoose = getUserChoose("username");
如何通过代码,将用户选择返回到 radDropDownList?
radDropDownList.Select = UserChoose ?
【问题讨论】:
-
请检查我的答案,让我知道它是否对您有用,或者您仍然面临任何问题。最美好的祝愿:-)
标签: c# telerik multi-select