gpt4 book ai didi

c# - 如何使用 C# 代码在 XAML UI 中查找具有特定名称的控件?

转载 作者:太空狗 更新时间:2023-10-29 22:25:39 26 4
gpt4 key购买 nike

我的 XAML UI 中有动态添加的控件。我如何找到具有名称的特定控件。

最佳答案

有一种方法可以做到这一点。您可以使用 VisualTreeHelper 遍历屏幕上的所有对象。我使用的一个方便的方法(从网上某处获得)是 FindControl 方法:

public static T FindControl<T>(UIElement parent, Type targetType, string ControlName) where T : FrameworkElement
{

    if (parent == null) return null;

    if (parent.GetType() == targetType && ((T)parent).Name == ControlName)
    {
        return (T)parent;
    }
    T result = null;
    int count = VisualTreeHelper.GetChildrenCount(parent);
    for (int i = 0; i < count; i++)
    {
        UIElement child = (UIElement)VisualTreeHelper.GetChild(parent, i);

        if (FindControl<T>(child, targetType, ControlName) != null)
        {
            result = FindControl<T>(child, targetType, ControlName);
            break;
        }
    }
    return result;
}

你可以这样使用它:

var combo = ControlHelper.FindControl<ComboBox>(this, typeof(ComboBox), "ComboBox123");

关于c# - 如何使用 C# 代码在 XAML UI 中查找具有特定名称的控件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38110972/

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