public DependencyPropertyPreSetEventArgs(DependencyProperty property, object value)
 {
     this.Property = property;
     this.Value    = value;
     this.Allow    = true; //默认是允许更改的
 }