我有一个自定义控件,想要绑定用户定义的边距。在客户端代码中 我尝试使用它,它显示错误。它说 -
“'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