Wpf组合框将所选项目列到字符串列表中
本文关键字:字符串 列表 项目 选项 组合 Wpf | 更新日期: 2023-09-27 18:29:45
问题:如何获取ComboBoxColumn
中所有选定项的List<string>
,以便更改数据库中的旧值我是wpf和溢出的新手,所以如果我犯了任何错误,请原谅
假设0是ComboBoxColumn的索引。
int j = DataGD.Items.Count;
int i = 0;
do
{
DataGridRow row = this.DataGD.ItemContainerGenerator.ContainerFromIndex(i) as DataGridRow;
ComboBox ele = this.DataGD.Columns[0].GetCellContent(row) as ComboBox;
string newS = ele.Text;
list.add(newS);
i++;
} while (i < j);