private void _tgMsgs_BeforeMouseDown(object sender, BeforeMouseDownEventArgs e) { if (CheckMark(e.X, e.Y)) { e.Cancel = true; } }
/// <summary> /// Вызывается перед обработкой сообщения нажатия мыши и позволяет /// отменить его. /// </summary> protected virtual bool OnBeforeMouseDownEvent( MouseButtons button, int clicks, int x, int y) { if (BeforeMouseDown != null) { var e = new BeforeMouseDownEventArgs( false, button, clicks, x, y, 0); BeforeMouseDown(this, e); return e.Cancel; } return false; }
/// <summary> /// Вызывается перед обработкой сообщения нажатия мыши и позволяет /// отменить его. /// </summary> protected virtual bool OnBeforeMouseDownEvent( MouseButtons button, int clicks, int x, int y) { if (BeforeMouseDown != null) { var e = new BeforeMouseDownEventArgs( false, button, clicks, x, y, 0); BeforeMouseDown(this, e); return(e.Cancel); } return(false); }
private void _tgMsgs_BeforeMouseDown(object sender, BeforeMouseDownEventArgs e) { if (CheckMark(e.X, e.Y)) e.Cancel = true; }