相当于 DataGrid 中的 CellMouseEnter?

发布于 2024-12-14 00:08:56 字数 131 浏览 2 评论 0原文

winforms DataGridView 控件中是否有某种相当于 CellMouseEnter 的东西可以在 WPF 中使用?我似乎在文档中找不到任何内容。

或者是否有更有效的方法来代替整个数据网格上的 MouseMove 事件?

Is there some sort of equivalent of CellMouseEnter from the winforms DataGridView control for use in WPF? I cant seem to find anything in the documention.

Or is there a more efficient way of doing it instead of the MouseMove event on the whole data grid?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尘世孤行 2024-12-21 00:08:56

您可以订阅各个单元格上的 Enter 事件,如下所示:

<DataGrid.Resources>
    <Style TargetType="{x:Type DataGridCell}">
        <EventSetter Event="MouseEnter" Handler="SomeHandler" />
    </Style>
</DataGrid.Resources>

You could subscribe to the enter event on the individual cells like this:

<DataGrid.Resources>
    <Style TargetType="{x:Type DataGridCell}">
        <EventSetter Event="MouseEnter" Handler="SomeHandler" />
    </Style>
</DataGrid.Resources>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文