示例#1
0
 public ITSToolTip()
 {
     ttp = new eToolTip()
     {
         UseAnimation = true, UseFading = true
     };
     synChecking.RTBTT = this;
 }
示例#2
0
 public AutoCompleteBox(ITSCodeBox box)
 {
     this.Parent                = Owner = box;
     this.tooltip               = new eToolTip();
     this.timer                 = new Timer();
     this.timer.Interval        = 300;
     this.timer.Tick           += TtTimer_Tick;
     this.SelectedIndexChanged += AutoCompleteBox_SelectedIndexChanged;
     this.VisibleChanged       += AutoCompleteBox_VisibleChanged;
     box.KeyDown               += Box_KeyDown;
     this.KeyDown              += AutoCompleteBox_KeyDown;
     this.DoubleClick          += AutoCompleteBox_DoubleClick;
     SetStyle(ControlStyles.Selectable, false);
 }
示例#3
0
 public ITSToolTip()
 {
     ttp = new eToolTip() { UseAnimation = true, UseFading = true };
     synChecking.RTBTT = this;
 }