Exemple #1
0
 public Box(ControlSelector c)
 {
     selector       = c;
     _owner         = c.OwnerControl;
     this.Width     = boxSize;
     this.Height    = boxSize;
     this.BackColor = Color.White;
     _owner.Move   += new EventHandler(c_Move);
 }
Exemple #2
0
 public BoxCB(ControlSelector c)
     : base(c)
 {
 }
Exemple #3
0
 public BoxLT(ControlSelector c)
     : base(c)
 {
     this.Cursor = Cursors.SizeNWSE;
 }