鼠标单击鼠标光标下获取元素名称

时间:2016-11-04 09:48:04

标签: c# wpf mouseclick-event objectname

我正在尝试制作一个方法,我可以获取被点击的元素。在App.xaml.cs中,我有方法OnPreviewMouseDown,它为应用程序中的每次单击激活。

现在我需要一些帮助从发件人那里获取元素名称(如果可能的话)

 static void OnPreviewMouseDown(object sender, MouseButtonEventArgs e)
    {
        if (e.RightButton == MouseButtonState.Pressed)
        {
            Control control = (Control)sender;   // Sender gives you which control is clicked.
            string name = control.Name.ToString();  //returns main window name, not element....

            string typee = sender.GetType().ToString();  //returns PPPMain.Views.MainWindow

        }
    }

我尝试了这个以及其他一些来自互联网的建议,但没有找到任何解决方案......

提前致谢!

2 个答案:

答案 0 :(得分:3)

使用MouseButtonEventArgs的OriginalSource属性:

var element = e.OriginalSource as FrameworkElement;
var name = element?.Name;

答案 1 :(得分:0)

您可以尝试在活动中使用此代码:

VisualTreeHelper.HitTest(this, e.GetPosition(this));

您可以在其他主题中找到更多信息:WPF Get Element(s) under mouse