WPF绑定表达式和依赖项属性

WPF绑定表达式和依赖项属性,wpf,data-binding,Wpf,Data Binding,我试图将文本框绑定到依赖项属性以更改其宽度。以下代码不起作用。有什么帮助吗 public class ToolbarManager : DependencyObject { public static readonly DependencyProperty toolbarButtonWidth = DependencyProperty.Register("toolbarButtonWidth", typeof(Double), typeof(ToolbarManage

我试图将文本框绑定到依赖项属性以更改其宽度。以下代码不起作用。有什么帮助吗

  public class ToolbarManager : DependencyObject
    {
        public static readonly DependencyProperty toolbarButtonWidth = DependencyProperty.Register("toolbarButtonWidth", typeof(Double), typeof(ToolbarManager), new FrameworkPropertyMetadata(32.0, FrameworkPropertyMetadataOptions.AffectsMeasure ));
        public static readonly DependencyProperty toolbarButtonHeight = DependencyProperty.Register("toolbarButtonHeight", typeof(Double), typeof(ToolbarManager), new FrameworkPropertyMetadata(32.0, FrameworkPropertyMetadataOptions.AffectsMeasure));

        public double ButtonWidth
        {
            get { return (double)GetValue(toolbarButtonWidth); }
            set { SetValue(toolbarButtonWidth, value); }
        }

        public double ButtonHeight
        {
            get { return (double)GetValue(toolbarButtonHeight); }
            set { SetValue(toolbarButtonHeight, value); }
        }

        public static ToolbarManager Instance { get; private set; }

        static ToolbarManager()
        {
            Instance = new ToolbarManager();

        }
    }
以下是标记代码:

<TextBox Width="{Binding Source={x:Static local:ToolbarManager.Instance}, Path=ButtonWidth, Mode=OneWay}" />


默认值有效,但如果我在代码中修改该值,则不会发生任何事情

重命名依赖项属性应该可以解决您的问题

public class ToolbarManager : DependencyObject
{
    public static readonly DependencyProperty ButtonWidthProperty =
      DependencyProperty.Register("ButtonWidth", typeof(Double), typeof(ToolbarManager), new FrameworkPropertyMetadata(32.0, FrameworkPropertyMetadataOptions.AffectsMeasure ));
    public static readonly DependencyProperty ButtonHeightProperty =
      DependencyProperty.Register("ButtonHeight", typeof(Double), typeof(ToolbarManager), new FrameworkPropertyMetadata(32.0, FrameworkPropertyMetadataOptions.AffectsMeasure));

    public double ButtonWidth
    {
        get { return (double)GetValue(ButtonWidthProperty); }
        set { SetValue(ButtonWidthProperty, value); }
    }

    public double ButtonHeight
    {
        get { return (double)GetValue(ButtonHeightProperty); }
        set { SetValue(ButtonHeightProperty, value); }
    }

    public static ToolbarManager Instance { get; private set; }

    static ToolbarManager()
    {
        Instance = new ToolbarManager();
    }
}

希望这有帮助

请将DependenEyc属性的名称从“toolbarButtonWidth”改为“ButtonWidth”。绑定中使用的名称必须与DP中指定的名称匹配。谢谢。我不知道他们必须匹配。