gpt4 book ai didi

c# - 如果在 RowDetails 中单击鼠标,如何阻止 DataGridRow 选择

转载 作者:行者123 更新时间:2023-12-04 13:23:07 28 4
gpt4 key购买 nike

我有一个 DataGrid,在每个 DataGridRow 中我都有行详细信息,其中包含几个控件。

我想要的是,如果在行详细信息中单击任何内容,则:
- 不选择行,或者更准确地说,
- 更改现有的 DataGrid 选择。

我正在考虑在行为中处理 PreviewMouseDown 和 MouseDown 事件,以某种方式使 DataGrid 跳过选择过程,但不确定如何继续。

最终我将在详细信息中包含一个包含更多信息的 TabControl,因此我也不希望通过单击 TabItem 来更改 DataGrid 的现有选择。

是否有一种方法可以在 Grid“DetailsContainer”级别启动 PreviewMouseDown 隧道并在 Grid“DetailsContainer”级别停止 MouseDown 冒泡

<DataGrid Name="dgAudit"
CanUserReorderColumns="False"
CanUserAddRows="False"
CanUserDeleteRows="False"
CanUserResizeColumns="False"
CanUserResizeRows="False"
CanUserSortColumns="False"
IsReadOnly="True"
ItemsSource="{Binding GEOM_ASSET_OC_LIST}"
VirtualizingPanel.ScrollUnit="Pixel"
RowDetailsVisibilityMode="Visible"
>
<i:Interaction.Behaviors>
<behaviors:DataGridBehaviors />
</i:Interaction.Behaviors>

<DataGrid.Columns>
<DataGridTextColumn Header="Asset ID" Binding="{Binding ASSET_ID}" Width="200" />
<DataGridTextColumn Header="Asset Type" Binding="{Binding ASSET_TYPE}" Width="200" />
<DataGridTextColumn Header="Last Update By" Binding="{Binding LAST_UPDATE_BY}" Width="150" />
<DataGridTextColumn Header="Last Update Date" Binding="{Binding LAST_UPDATE_DATETIME, StringFormat=\{0:dd.MM.yy HH:mm:ss tt\}}" Width="150" />
</DataGrid.Columns>
<DataGrid.RowDetailsTemplate>
<DataTemplate>
<Grid Name="DetailsContainer">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<TextBlock Name Text="{Binding Notes}" Width="400" HorizontalAlignment="Left" TextWrapping="Wrap"/>
<Button Content="Button" Grid.Column="1" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" Width="75" Click="Button_Click"/>
</Grid>
</DataTemplate>
</DataGrid.RowDetailsTemplate>
</DataGrid>

只是一个空行为的快速模拟

public class DataGridBehaviors : Behavior<DataGrid>
{
protected override void OnAttached()
{
base.OnAttached();
this.AssociatedObject.MouseDown += DataGrid_MouseDown;
this.AssociatedObject.PreviewMouseDown += DataGrid_PreviewMouseDown;
}

protected override void OnDetaching()
{
this.AssociatedObject.PreviewMouseDown -= DataGrid_PreviewMouseDown;
this.AssociatedObject.MouseDown -= DataGrid_MouseDown;
base.OnDetaching();
}

private void DataGrid_MouseDown(object sender, MouseButtonEventArgs e)
{
}

private void DataGrid_PreviewMouseDown(object sender, MouseButtonEventArgs e)
{
DependencyObject obj = (DependencyObject)e.OriginalSource;
DataGridDetailsPresenter RowsDetails = FindParent<DataGridDetailsPresenter>(obj);
if (RowsDetails != null)
{
//Skip over selection, maybe temporarily removed native selection handler???
}
}

public static T FindParent<T>(DependencyObject child) where T : DependencyObject
{
//get parent item
DependencyObject parentObject = VisualTreeHelper.GetParent(child);

//we've reached the end of the tree
if (parentObject == null) return null;

//check if the parent matches the type we're looking for
T parent = parentObject as T;
if (parent != null)
return parent;
else
return FindParent<T>(parentObject);
}

private static T GetVisualChild<T>(DependencyObject parent) where T : Visual
{
T child = default(T);

int numVisuals = VisualTreeHelper.GetChildrenCount(parent);
for (int i = 0; i < numVisuals; i++)
{
Visual v = (Visual)VisualTreeHelper.GetChild(parent, i);
child = v as T;
if (child == null)
{
child = GetVisualChild<T>(v);
}
if (child != null)
{
break;
}
}
return child;
}
}

最佳答案

不幸的是,当前的 WPF DataGrid 实现无法实现您想要的。

DataGridDetailsPresenter 注册了一个 class event handler对于使用 EventManager API 的 MouseLeftButtonDownEvent 路由事件:

EventManager.RegisterClassHandler(
typeof(DataGridDetailsPresenter),
MouseLeftButtonDownEvent,
new MouseButtonEventHandler(OnAnyMouseLeftButtonDownThunk),
true);

请注意,最后一个参数设置为 true。它是一个标志,指示监听器是否希望听到已处理的事件。在这种情况下,即使您在任何级别将 RoutedEventArgs.Handled 属性设置为 true,也会调用内部 DataGridDetailsPresenter 的事件处理程序无论如何。

此事件处理程序负责聚焦您在其中单击详细信息 View 的 DataRow。您肯定知道,在 WPF 中,类事件处理程序在实例事件处理程序之前被调用。因此,左键单击详细信息行的呈现器会发生的第一件事是聚焦包含行(实际上是该行的第一个单元格)。

另请注意,此行为也会管理 RowPresenter 内虚拟项目的实现,因此禁用它可能会导致不需要的 GUI 副作用。

您可以将容器 GridIsHitTestVisible 属性设置为 false,这将禁用自动行选择行为。但显然,您根本无法处理行详细信息中的任何点击。

关于c# - 如果在 RowDetails 中单击鼠标,如何阻止 DataGridRow 选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46396183/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com