Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 WPF 工具包 DataGrid。
如何获取所选行的单元格的值?
在 WPF 中,行表示列表中的对象,列是对象的属性。
这取决于 DataGrid.ItemsSource 是什么。如果您的 ItemSource 是 BindedClass 数组,您可以通过以下方式获取选定对象:
BoundClass bc = (BoundClass)dataGridControl.SelectedItem; var prop1 = bc.Prop1; var prop2 = bc.Prop2;