/// <summary> /// Invokes the LoseFocus event. /// </summary> internal void TakeFocus() { if (LoseFocus != null) { LoseFocus.Invoke(); } }
void OnKillFocusCallBack(ref Message m) { if (LoseFocus != null) { LoseFocus.Invoke(this); } }
void OnNCLButtonDownCallBack(ref Message m) { if (m.WParam.ToInt32() == HTCAPTION) { if (LoseFocus != null) { LoseFocus.Invoke(this); } } }