Example #1
0
 public DDTSFrameHandle(IDDHandleHolder holder)
     : base(holder)
 {
     Position = DDPanelHandlePosition.None;
     Width    = 10;
     Height   = 10;
 }
Example #2
0
 protected DDHandle(IDDHandleHolder holder)
 {
     this.Holder = holder;
 }
Example #3
0
 public DDControl2Handle(IDDHandleHolder holder)
     : base(holder)
 {
     Width  = 6;
     Height = 6;
 }
Example #4
0
 public DDControl1Handle(IDDHandleHolder holder)
     : base(holder)
 {
     Width  = 7;
     Height = 7;
 }
Example #5
0
 public DDPointHandle(IDDHandleHolder holder)
     : base(holder)
 {
     Width  = 9;
     Height = 9;
 }
Example #6
0
 protected DDPositionableHandle(IDDHandleHolder holder)
     : base(holder)
 {
 }
Example #7
0
 protected DDPanelHandle(IDDHandleHolder holder)
     : base(holder)
 {
     Position = DDPanelHandlePosition.None;
 }