public void Expand() { if (!Expanded) { tipWindow = new TipWindow(this); tipWindow.Closed += new EventHandler(tipWindow_Closed); tipWindow.Expansion = this.Expansion; tipWindow.Overlay = this.Overlay; tipWindow.AutoCloseDelay = this.AutoCloseDelay; tipWindow.MouseLeaveDelay = this.MouseLeaveDelay; tipWindow.WantClicks = this.CopySupported; tipWindow.Show(); } }
private void tipWindow_Closed(object sender, System.EventArgs e) { tipWindow = null; hoverIndex = -1; ClearTimer(); }
private void tipWindow_Closed(object sender, EventArgs e) { tipWindow = null; }
private void tipWindow_Closed(object sender, EventArgs e) { tipWindow = null; ClearTimer(); }