public ITSToolTip() { ttp = new eToolTip() { UseAnimation = true, UseFading = true }; synChecking.RTBTT = this; }
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); }