我可以创建一个简单的依赖属性来绑定边距吗?

时间:2016-06-27 15:12:12

标签: wpf

我有一个自定义控件,想要绑定用户定义的边距。在客户端代码中  我尝试使用它,它显示错误。它说 -

“'0}'字符串无法转换为长度”

 public static readonly DependencyProperty MarginProperty =
         DependencyProperty.Register("Margin", typeof (Thickness), typeof 
 (TestControl), new PropertyMetadata(default(Thickness)));

    public Thickness Margin
     {
         get { return (Thickness) GetValue(MarginProperty); }
         set { SetValue(MarginProperty, value); }
     }

我的依赖属性有问题吗?

谢谢& Regads

1 个答案:

答案 0 :(得分:0)

已经有Margin`property的任何FrameworkElement,您正在尝试创建具有相同名称和相同类型的dep属性?