Inheritance: System.EventArgs
Example #1
0
 public UndoMoveEventArgs(MoveEventArgs other, bool size_increased, bool end_was_tail_node)
     : base(other)
 {
     ProgramSizeIncreased = size_increased;
     EndWasTailNode = end_was_tail_node;
     TailNodeLocation = new Point(-1, -1);
 }
Example #2
0
 public UndoMoveEventArgs(MoveEventArgs other, bool size_increased, bool end_was_tail_node, Point tail_node_location)
     : base(other)
 {
     ProgramSizeIncreased = size_increased;
     EndWasTailNode = end_was_tail_node;
     TailNodeLocation = tail_node_location;
 }
Example #3
0
 public MoveEventArgs(MoveEventArgs other)
     : base()
 {
     Start = other.Start;
     Direction = other.Direction;
 }