码迷,mamicode.com
首页 > 其他好文 > 详细

热键HotKeys

时间:2014-04-29 16:25:46      阅读:330      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   java   color   os   

一:新建类HotKeys命名空间:

using System.Runtime.InteropServices;

二:注册热键API

[DllImport("user32")]
public static extern bool RegisterHotKey(IntPtr hWnd, Int32 id, UInt32 fsModifilters, Keys key);
[DllImport("user32")]
public static extern bool UnregisterHotKey(IntPtr hWnd, Int32 id);

三:注册/注销热键

mamicode.com,码迷
       public static void RegHotKey(IntPtr ptr)
        {
            RegisterHotKey(ptr, 555, 0, Keys.F5);
            RegisterHotKey(ptr, 666, 0, Keys.F6);
        }
        public static void UnRegHotKey(IntPtr ptr)
        {
            UnregisterHotKey(ptr, 555);
            UnregisterHotKey(ptr, 666);
        } 
mamicode.com,码迷

四:Form窗体调用

HotKeys.RegHotKey(this.Handle);  //Load或Active事件

HotKeys.UnRegHotKey(this.Handle);//Closing事件

五:Form窗体重写WndPro

mamicode.com,码迷
       protected override void WndProc(ref Message m)
        {
            const Int32 WM_HOTKEY = 0x0312;
            IntPtr ptr = m.WParam;
            String sptr = ptr.ToString();
            switch (m.Msg)
            {
                case WM_HOTKEY:
                    if (sptr.Equals("555"))
                    {
                        tsb_OK();  //调用事件
                    }
                    else if (sptr.Equals("666"))
                    {
                        barbtn_Referral();
                    }
                    break;
            }
            base.WndProc(ref m);
        }
mamicode.com,码迷

 

 

热键HotKeys,码迷,mamicode.com

热键HotKeys

标签:style   blog   http   java   color   os   

原文地址:http://www.cnblogs.com/cuiliwen/p/3699520.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!