OnWindowlessLostFocus() 보호된 메소드

protected OnWindowlessLostFocus ( WindowlessControlHost sender, EventArgs e ) : void
sender WindowlessControlHost
e System.EventArgs
리턴 void
예제 #1
0
        protected override void OnLostFocus(EventArgs e)
        {
            WindowlessControlHost host = this;

            while (host != null)
            {
                host.OnWindowlessLostFocus(this, e);
                host = host.Parent as WindowlessControlHost;
            }
            base.OnLostFocus(e);
        }