我正在做我的第一个项目。我有一个列表框,可以在其中选择多个值,并且我想将每个选择(selectedItem.Text)添加到字符串列表中。
到目前为止,我正在做的是类似..
selectedItem = new List<string>();
var value = lstpdfList.SelectedItem.Text;
for (int i = 0; i < lstpdfList.SelectedValue.Count(); i++)
{
selectedItem.Add(value);
}
我真的很感激任何建议。