WPF DependencyProperty 自定义依赖项属性的问题
我参考http://msdn.microsoft.com/zh-cn/partners/system.windows.dependencyproperty(VS.95).aspx
定义名为LabelText的用户控件 自定义属性名为LabelName
public partial class LabelText : UserControl { public static readonly DependencyProperty LabelTextProperty = DependencyProperty.Register( "LabelName", typeof(String), typeof(LabelText), null ); public String LabelName { get { return (String)GetValue(LabelTextProperty); } set { SetValue(LabelTextProperty, value); } } public LabelText() { InitializeComponent();//this.LabelName始终为NULL } }