AdvancedLauncher.Tools.Interop.HwndSourceHost.OnMnemonicCore C# (CSharp) 메소드

OnMnemonicCore() 보호된 최종 메소드

protected final OnMnemonicCore ( System.Windows.Interop.MSG &msg, ModifierKeys modifiers ) : bool
msg System.Windows.Interop.MSG
modifiers ModifierKeys
리턴 bool
        protected override sealed bool OnMnemonicCore(ref MSG msg, ModifierKeys modifiers)
        {
            if (_hwndSource != null) {
                return ((IKeyboardInputSink)_hwndSource).OnMnemonic(ref msg, modifiers);
            } else {
                return base.OnMnemonicCore(ref msg, modifiers);
            }
        }