如何在 C#-WPF 中鼠标按下时检测鼠标光标下的自定义控件?

发布于 2025-01-07 10:51:14 字数 113 浏览 0 评论 0原文

我使用 RadioButton 创建自定义控件,并想知道当鼠标移到其上且按住其左键时如何检测它?当然,我知道使用 VisualTreeHelper 是可能的,但此方法仅返回最顶层的元素(不是我自己的自定义控件)。

I use RadioButton to Create Custom Control and want to know How do I detect it when mouse move over it while its left button is pressed and held down? Of course I know it is possible with VisualTreeHelper but this method returns only top most element (not my own custom control).

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

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

发布评论

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

评论(1

清风夜微凉 2025-01-14 10:51:14

您可以使用这样的代码片段在 VisualTree 中进行更深入的挖掘,并返回它找到的指定类型的第一个控件:

public static T GetVisualChild<T>(Visual 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;
}

要在 someVisual 控件中查找 MyCustomControl

MyCustomControl myControl = GetVisualChild<MyCustomControl>(someVisual);

You can use a snippet like this to dig deeper in the VisualTree, and return the first control of the specified type it finds:

public static T GetVisualChild<T>(Visual 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;
}

To find a MyCustomControl inside the someVisual control:

MyCustomControl myControl = GetVisualChild<MyCustomControl>(someVisual);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文