diff --git a/CPF/AttachedProperties.cs b/CPF/AttachedProperties.cs
index 67715b5..a0e2988 100644
--- a/CPF/AttachedProperties.cs
+++ b/CPF/AttachedProperties.cs
@@ -212,4 +212,104 @@ namespace CPF
return false;
}
}
+ ///
+ /// 绑定附加属性
+ ///
+ public class AttachedDescribe : BindingDescribe
+ {
+ ///
+ /// 设置和绑定附加属性
+ ///
+ ///
+ ///
+ public AttachedDescribe(object value, string sourceProperty) : base(sourceProperty)
+ {
+ Value = value;
+ }
+ ///
+ /// 设置和绑定附加属性
+ ///
+ ///
+ ///
+ ///
+ public AttachedDescribe(object value, string sourceProperty, BindingMode binding) : base(sourceProperty, binding)
+ {
+ Value = value;
+ }
+ ///
+ /// 设置和绑定附加属性
+ ///
+ ///
+ ///
+ ///
+ ///
+ public AttachedDescribe(object value, object source, string sourceProperty, BindingMode binding) : base(source, sourceProperty, binding)
+ {
+ Value = value;
+ }
+ ///
+ /// 设置和绑定附加属性
+ ///
+ ///
+ ///
+ ///
+ public AttachedDescribe(object value, object source, string sourceProperty) : base(source, sourceProperty)
+ {
+ Value = value;
+ }
+ ///
+ /// 设置和绑定附加属性
+ ///
+ ///
+ ///
+ ///
+ ///
+ public AttachedDescribe(object value, object source, string sourceProperty, Func