We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I'm trying to have row double click functionalty on the datagrid but the events don't fire. In normal WPF the events do fire when set using this way 👇
<ui:DataGrid Margin="0,10,0,0" AutoGenerateColumns="False" BorderBrush="{DynamicResource ControlStrongFillColorDarkBrush}" BorderThickness="1" CanUserReorderColumns="True" CanUserResizeColumns="True" CanUserSortColumns="True" GridLinesVisibility="All" IsReadOnly="True" ItemsSource="{Binding Clients}" SelectionMode="Single" SelectionUnit="FullRow"> <ui:DataGrid.Resources> <Style TargetType="DataGridRow"> <EventSetter Event="MouseDoubleClick" Handler="Control_OnMouseDoubleClick" /> </Style> </ui:DataGrid.Resources> </ui:DataGrid>
Row events must fire.
No response
Win 11
.Net 8
4.0.2
The text was updated successfully, but these errors were encountered:
Something in DefaultDataGridRowStyle appears to break it.
DefaultDataGridRowStyle
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Hi,
I'm trying to have row double click functionalty on the datagrid but the events don't fire. In normal WPF the events do fire when set using this way 👇
To Reproduce
Expected behavior
Row events must fire.
Screenshots
No response
OS version
Win 11
.NET version
.Net 8
WPF-UI NuGet version
4.0.2
Additional context
No response
The text was updated successfully, but these errors were encountered: