예제 #1
0
 public Clip(int?number = null, BoolInt bottom = null, BoolInt top = null, BoolInt left = null, BoolInt right = null)
 {
     this.number = number;
     this.bottom = bottom;
     this.top    = top;
     this.left   = left;
     this.right  = right;
 }
예제 #2
0
 private bool selectIndex(int index)
 {
     if (!suggestions.InvokeRequired)
     {
         suggestions.SetSelected(index, true);
         return true;
     }
     var d = new BoolInt(selectIndex);
     return (bool) MainControl.mainWin.Invoke(d, new object[] { index });
 }