在c#中用RegisterHotKey函数如何表示组合键
在c#中用RegisterHotKey函数怎么表示组合键
我原本是想用hook来屏蔽系统的组合键,就是不知道给用这个表示组合键,
例如:Ctrl+Alt+Del 是系统注册过的热键,怎么用这个函数来表示,
RegisterHotKey是一个api函数,希望大家能给我解决以下,谢谢了
public void SetHotKey(Keys c, bool bCtrl, bool bShift, bool bAlt, bool bWindows) { m_hotkey = c; m_ctrlhotkey = bCtrl; m_shifthotkey = bShift; m_althotkey = bAlt; m_winhotkey = bWindows;
// update hotkey NativeWIN32.KeyModifiers modifiers = NativeWIN32.KeyModifiers.None; if (m_ctrlhotkey) modifiers |= NativeWIN32.KeyModifiers.Control; if (m_shifthotkey) modifiers |= NativeWIN32.KeyModifiers.Shift; if (m_althotkey) modifiers |= NativeWIN32.KeyModifiers.Alt; if (m_winhotkey) modifiers |= NativeWIN32.KeyModifiers.Windows;
NativeWIN32.RegisterHotKey(Handle, 100, modifiers, m_hotkey); //Keys.J); } 代码不是很完全,自己稍微理解一下吧