随笔分类 - C#WPF / WPF依赖属性
摘要:依赖附加属性的定义 可使用代码片段-propa快速生成,输入propa后按两次Tab键 public static int GetMyProperty(DependencyObject obj) { return (int)obj.GetValue(MyPropertyProperty); } pu
阅读全文
摘要:依赖属性定义 可使用代码片段-propdp快速生成,输入propdp后按两次Tab键 public int MyProperty { get { return (int)GetValue(MyPropertyProperty); } set { SetValue(MyPropertyProperty
阅读全文