0

我有一个为其添加 DependencyProperty 的 UserControl。

    public const string TextValuePropertyName = "TextValue";
      public string TextValue
    {
        get
        {
            return (string)GetValue(TextValueProperty);
        }
        set
        {
            SetValue(TextValueProperty, value);
        }
    }
     public static readonly DependencyProperty TextValueProperty = DependencyProperty.Register(
        TextValuePropertyName,
        typeof(string),
        typeof(FormatUserControl),
        new UIPropertyMetadata());

并在另一个用户控件中使用它

       <local:FormatUserControl   TextValue="{Binding Subject,Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"  />

当我使用它时,当我改变值时不要为这个属性设置Subject值?

4

1 回答 1

1

您的 FormatUserControl 是类,您应该为它注册属性,而不是像这样为 NumberFormatUserControl 注册属性(我不知道两个用户控件之间的关系是什么):

public static readonly DependencyProperty TextValueProperty = DependencyProperty.Register(
    TextValuePropertyName,
    typeof(string),
    typeof(FormatUserControl),
    new UIPropertyMetadata());
于 2013-09-18T09:34:12.650 回答