我需要读取WPF应用程序中数据网格中一列的所有值。
for (int i = 0; i < dgridList.Items.Count; i++)
{
DataGridRow row = (DataGridRow)dgridList.ItemContainerGenerator.ContainerFromIndex(i);
TextBlock t_name = dgridList.Columns[0].GetCellContent(row) as TextBlock;
TextBlock t_type = dgridList.Columns[1].GetCellContent(row) as TextBlock;
Tuple<string, string> mod = new Tuple<string, string>(t_name.Text, t_type.Text);
Alist.Add(mod);
}
这是datagrid的XMAL声明
<DataGrid x:Name ="dgridList" Margin="0,0,0,0" Grid.Row="1" IsReadOnly="True" AutoGenerateColumns="False">
如果数据网格仅包含3,4个项目,则此迭代工作正常(如果在数据网格迭代中添加更多项目,则不起作用。)。如果增加项目,则婴儿车栏也可见。 (因为数据网格大小设置为小)
An unhandled exception of type 'System.ArgumentNullException' occurred in PresentationFramework.dll
Additional information: Value cannot be null.
如果我尝试读取数据网格中的值(超过4个项目),则会收到此错误。
我该如何解决。
最佳答案
如果已将ItemsSource
的DataGrid
属性设置为IEnumerable<YourClass>
,则可以遍历所有YourClass
对象并获取其属性值:
foreach (var item in dgridList.Items.OfType<YourClass>())
{
var name = item.t_name;
var type = item.t_type;
Tuple<string, string> mod = new Tuple<string, string>(name, type);
Alist.Add(mod);
}
关于c# - 在WPF中读取数据网格的值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43230545/