摘要:
XAML命名空间xmlns=http://schemas.microsoft.com/winfx/2006/xaml/presentation命名空间映射许多当前*.xaml文件使用的WPF.NET命名空间。这个一对多的映射其实使用程序集级别的[XmlnsDefinition]特性硬编码在WPF程序集中。例如导入System.Windows命名空间: [asembly:XmlnsDefinition(“http://schemas.microsoft.com/winfx/2006/xaml/presentation”)]另外可以使用clr-namespace和assembly标记建立一个自定. 阅读全文
摘要:
例子一:简单的依赖属性 OK class Student:DependencyObject { //最简单的依赖属性 public static readonly DependencyProperty NameProperty = DependencyProperty.Register("Name", typeof (string), ... 阅读全文