Example #1
0
 public UndoItem(UndoableAttribute parent, object newValue, object oldValue, LocationInterceptionArgs args)
 {
     this.newValue = newValue;
     this.parent   = parent;
     this.oldValue = oldValue;
     this.args     = args;
 }
Example #2
0
 public UndoItem( UndoableAttribute parent, object newValue, object oldValue, ILocationBinding binding )
 {
     this.newValue = newValue;
     this.parent = parent;
     this.oldValue = oldValue;
     this.binding = binding;
 }
 public UndoItem( UndoableAttribute parent, object newValue, object oldValue, LocationInterceptionArgs args )
 {
     this.newValue = newValue;
     this.parent = parent;
     this.oldValue = oldValue;
     this.args = args;
 }