AdvancedLauncher.Tools.Interop.RedirectedHwndSourceHost.OnMnemonicCore C# (CSharp) Method

OnMnemonicCore() protected final method

protected final OnMnemonicCore ( System.Windows.Interop.MSG &msg, ModifierKeys modifiers ) : bool
msg System.Windows.Interop.MSG
modifiers ModifierKeys
return 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);
            }
        }