循环遍历WPF DataGrid中的特定列

时间:2015-07-01 17:50:31

标签: c# wpf datagrid

我正在尝试循环遍历wpf datagrid中的特定列并获取该单元格的内容。我正在尝试这段代码:

var itemsSource = tblData.ItemsSource as IEnumerable;
for(int i = 0; i < Convert.ToInt32(itemsSource.GetEnumerator().Current); i++)
{
    System.Windows.Forms.MessageBox.Show(i.ToString());
}

但它返回一个例外:

  

未处理的类型&#39; System.InvalidOperationException&#39;发生在mscorlib.dll

我希望有人可以帮助我实现目标。提前谢谢。

0 个答案:

没有答案