/// <summary> /// Raises the DoubleClick event. /// </summary> /// <param name="e">A KeyEventArgs that contains the event data.</param> protected override void OnDoubleClick(EventArgs e) { // Cannot process a message for a disposed control if (!IsDisposed && !Disposing) { // Do we have a manager for processing mouse messages? if (ViewManager != null) { ViewManager.DoubleClick(this.PointToClient(Control.MousePosition)); } } // Let base class fire events base.OnDoubleClick(e); }