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

WmNcMouseLeave() private method

private WmNcMouseLeave ( Message &m ) : void
m Message
return void
		private void WmNcMouseLeave (ref Message m)
		{
			if (ActiveMaximizedMdiChild != null && ActiveMenu != null) {
				ActiveMaximizedMdiChild.HandleMenuMouseLeave (ActiveMenu,
						LowOrder ((int)m.LParam.ToInt32 ()),
						HighOrder ((int)m.LParam.ToInt32 ()));
			}
			base.WndProc (ref m);
		}
		
Form