标题:在c#中用RegisterHotKey函数如何表示组合键
只看楼主
zgy0209zgy
Rank: 1
等 级:新手上路
帖 子:71
专家分:0
注 册:2005-8-15
 问题点数:0 回复次数:1 
在c#中用RegisterHotKey函数如何表示组合键
在c#中用RegisterHotKey函数怎么表示组合键 我原本是想用hook来屏蔽系统的组合键,就是不知道给用这个表示组合键, 例如:Ctrl+Alt+Del 是系统注册过的热键,怎么用这个函数来表示, RegisterHotKey是一个api函数,希望大家能给我解决以下,谢谢了
搜索更多相关主题的帖子: 函数 屏蔽系统 hook api Del 
2005-08-31 11:20
houyunqing
Rank: 1
等 级:新手上路
帖 子:476
专家分:0
注 册:2005-4-1
得分:0 

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); } 代码不是很完全,自己稍微理解一下吧


寻求挑战,追求完美 Oh,my god!
2005-08-31 16:21



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-26393-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.108314 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved