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;