WPF子级定义的附加属性初始值

时间:2018-11-13 10:13:28

标签: c# wpf attached-properties

我想使用附加属性来设置多个子元素的属性。仅在初始化期间,VisualTreeHelper.GetChildrenCount(parent)返回0个孩子。

在呈现视图后更改绑定的MyText时,所有操作均按预期进行。

在渲染之前如何使孩子们发疯?

XAML:

<StackPanel local:SetTextService.Text="{Binding MyText}">
    <TextBox />
    <TextBox />
    <TextBox />
</StackPanel>

C#:

public class SetTextService : DependencyObject
{
    public static readonly DependencyProperty TextProperty =
                           DependencyProperty.RegisterAttached("Text", typeof(string), typeof(SetTextService),
                           new FrameworkPropertyMetadata("", new PropertyChangedCallback(TextPropertyChanged)));

    public static void SetText(UIElement element, string value)
    {
        element.SetValue(TextProperty, value);
    }

    public static string GetText(UIElement element)
    {
        return (string)element.GetValue(TextProperty);
    }

    private static void TextPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
    {
        SetChildControlText(d, (string)e.NewValue);
    }

    private static void SetChildControlText(DependencyObject parent, string text)
    {
        for (int i = 0; i < VisualTreeHelper.GetChildrenCount(parent); i++)
        {
            DependencyObject child = VisualTreeHelper.GetChild(parent, i);
            PropertyInfo propInfo = child.GetType().GetProperty("Text");
            if (propInfo != null) propInfo.SetValue(child, text);
            SetChildControlText(child, text);
        }
    }
}

1 个答案:

答案 0 :(得分:1)

在添加TextBoxes之前 设置了您的附加属性。您可以处理Loaded的{​​{1}}事件,并在此事件处理程序中进行处理,而不是在属性更改后的回调中进行处理,也可以在之后设置 StackPanel已使用以下元素语法添加:

TextBoxes

属性的设置顺序很重要。