如何从代码中获取x:对象的名称?

时间:2010-06-17 23:03:54

标签: wpf xaml code-behind xname

给定对XAML中定义的对象的引用,是否可以确定对象具有什么(如果有)x:Name,或者我只能通过访问FrameworkElement.Name属性来执行此操作(如果对象是FrameworkElement) )?

1 个答案:

答案 0 :(得分:5)

您可以采取的一种方法是首先检查对象是否为FrameworkElement,如果没有,请尝试使用反射来获取名称:

public static string GetName(object obj)
{
    // First see if it is a FrameworkElement
    var element = obj as FrameworkElement;
    if (element != null)
        return element.Name;
    // If not, try reflection to get the value of a Name property.
    try { return (string) obj.GetType().GetProperty("Name").GetValue(obj, null); }
    catch
    {
        // Last of all, try reflection to get the value of a Name field.
        try { return (string) obj.GetType().GetField("Name").GetValue(obj); }
        catch { return null; }
    }
}