示例#1
0
 internal BindingSide(PropertyWrapper <T> propertyWrapper)
 {
     _propertyExpression = () => propertyWrapper.Value;
     Init();
 }
示例#2
0
文件: Binder.cs 项目: Bery0za/Ariadne
 public static BindingSide <T> Side <T>(PropertyWrapper <T> propertyWrapper)
 {
     return(new BindingSide <T>(propertyWrapper));
 }