System.Windows.Forms.Form.WmNcMouseMove C# (CSharp) Method

WmNcMouseMove() private method

private WmNcMouseMove ( Message &m ) : void
m Message
return void
		private void WmNcMouseMove (ref Message m)
		{
			if (XplatUI.IsEnabled (Handle) && ActiveMenu != null) {
				ActiveMenu.OnMouseMove (this, new MouseEventArgs (FromParamToMouseButtons ((int)m.WParam.ToInt32 ()), mouse_clicks, LowOrder ((int)m.LParam.ToInt32 ()), HighOrder ((int)m.LParam.ToInt32 ()), 0));
			}

			if (ActiveMaximizedMdiChild != null && ActiveMenu != null) {
				XplatUI.RequestAdditionalWM_NCMessages (Handle, false, true);
				ActiveMaximizedMdiChild.HandleMenuMouseMove (ActiveMenu,
						LowOrder ((int)m.LParam.ToInt32 ()),
						HighOrder ((int)m.LParam.ToInt32 ()));
			}
			base.WndProc (ref m);
		}
		
Form