OnSystemCommand() protected method

protected OnSystemCommand ( SystemCommandEventArgs e ) : void
e SystemCommandEventArgs
return void
Esempio n. 1
0
        private void WmSysCommand(ref Message m)
        {
            _chrome.OnSystemCommand(new SystemCommandEventArgs(
                                        (SystemCommand)m.WParam.ToInt32()
                                        ));

            base.WndProc(ref m);
        }