gpt4 book ai didi

wpf - 我怎样才能得到 x :Name of an object from code?

转载 作者:行者123 更新时间:2023-12-04 15:15:57 28 4
gpt4 key购买 nike

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

最佳答案

您可以采取的一种方法是首先检查对象是否是 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; }
}
}

关于wpf - 我怎样才能得到 x :Name of an object from code?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3066247/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com