wpfアプリケーションにデータグリッドを追加しました。
<DataGrid ItemsSource="{Binding Projects}" SelectedItem="{Binding SelectedProject}" MouseDoubleClick="DataGrid_MouseDoubleClick" />
これが私の背後にあるコードです
private void DataGrid_MouseDoubleClick(object sender, System.Windows.Input.MouseButtonEventArgs e)
{
if selected row is header
then do this
else
do this
}
ここで問題となるのは、どちらがダブルクリックされているかをどうやって知るようになったのかということです。ヘッダーまたは行です。どうすればそれを見つけることができますか。