WPF DataGrid鼠标滚不动,划不动解决

WPF DataGrid鼠标悬浮时,滚不动,划不动解决

给DataGrid添加事件 PreviewMouseWheel="UIElement_OnPreviewMouseWheel"

bash 复制代码
<DataGrid
    x:Name="DataGridList56"
    Grid.Column="0"
    Margin="0,5,0,0"
    AutoGenerateColumns="False"
    CanUserAddRows="False"
    CanUserDeleteRows="False"
    ItemsSource="{Binding SymptomQuestionnaires}"
    PreviewMouseWheel="UIElement_OnPreviewMouseWheel"
    SelectedItem="{Binding CurrentSelectedRowData}"
    SelectionUnit="FullRow">

后台代码

csharp 复制代码
        private void UIElement_OnPreviewMouseWheel(object sender, MouseWheelEventArgs e)
        {
            if (sender != null && sender is DataGrid dataGrid)
            {
                var eventArg = new MouseWheelEventArgs(e.MouseDevice, e.Timestamp, e.Delta);
                eventArg.RoutedEvent = MouseWheelEvent;
                eventArg.Source = sender;
                dataGrid.RaiseEvent(eventArg);
            }
        }
相关推荐
咩图10 小时前
WPF-VisualStudio-C#-Fluent.Ribbon8.0.0学习
c#·wpf·visual studio
拼尽全力前进10 小时前
JDDL 核心实现原理与架构解析
架构·wpf
加号310 小时前
【C#】WPF基于Halcon 的HWindowControlWPF 控件实现图像缩放、移动
开发语言·c#·wpf
码农的神经元13 小时前
考虑通信时延的直流微电网分布式电-氢混合储能协同控制仿真复现与改进
分布式·wpf
Kimhill张16 小时前
.net core8 WPF 依赖注入(DI)
wpf·.netcore
△曉風殘月〆2 天前
如何在WPF中使用 Fluent 主题
wpf
△曉風殘月〆2 天前
不同.NET版本中的WPF新增功能
.net·wpf
海盗12342 天前
WPF使用内置资源系统实现国际化
wpf
Rotion_深2 天前
WPF UserControl 和 CustomControl
wpf
SEO-狼术2 天前
Run Secure SFTP Across Every Platform
pdf·wpf