WPF 获取DataGrid 控件选中的单元格信息
Posted lipengxu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF 获取DataGrid 控件选中的单元格信息相关的知识,希望对你有一定的参考价值。
获取 DataGrid 选中的单元格的信息
DataGridCellInfo cell_Info = this.studentTable.SelectedCells[0];
studentTableItem student_Info = cell_Info.Item as studentTableItem;
studentTableItem 为一个自定义类 单元格中的数据绑定的是这个自定义类
以上是关于WPF 获取DataGrid 控件选中的单元格信息的主要内容,如果未能解决你的问题,请参考以下文章
wpf datagrid根据多选选中的获取单元格内容,进行操作数据