At the moment my DataGrid shows the RowDetails when i click a row. But I want to show the RowDetails only on Double-click.
Any ideas for solving this problem?
Thank you!
e.g.
<DataGrid RowDetailsVisibilityMode="Collapsed">
<DataGrid.RowStyle>
<Style TargetType="{x:Type DataGridRow}">
<EventSetter Event="MouseDoubleClick" Handler="RowDoubleClick"/>
</Style>
</DataGrid.RowStyle>
</DataGrid>
private void RowDoubleClick(object sender, RoutedEventArgs e)
{
var row = (DataGridRow)sender;
row.DetailsVisibility = row.DetailsVisibility == Visibility.Collapsed ?
Visibility.Visible : Visibility.Collapsed;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With