コード例 #1
0
 public BindingExpressionKey(Control control, PropertyDescriptorBase property)
 {
     this.property = property;
     this.controlReference = new WeakReference(control);
 }
コード例 #2
0
 public bool IsMatchedAction(Control control, PropertyDescriptorBase property)
 {
     return this.Control == control && object.Equals(this.Property, property);
 }
コード例 #3
0
ファイル: SetValueAction.cs プロジェクト: VitalyTVA/WinMVVM
 public SetValueAction(Control control, PropertyDescriptorBase property, object value)
     : base(control, property)
 {
     Value = value;
 }
コード例 #4
0
 public BindingManagerActionBase(Control control, PropertyDescriptorBase property)
 {
     Property = property;
     Control = control;
 }
コード例 #5
0
ファイル: SetBindingAction.cs プロジェクト: VitalyTVA/WinMVVM
 public SetBindingAction(Control control, PropertyDescriptorBase property, BindingBase binding)
     : base(control, property)
 {
     Binding = binding;
 }