C# 第一个多窗口的程序,Effective Key

Posted on 2007-08-30 17:47  Samson小天  阅读(2547)  评论(0编辑  收藏  举报
   这个程序是一个类似于音速启动的,受到Vista下用Win+1组合键可以启动快速启动栏第一个程序的启发,我做的这个程序是点击Alt+1启动我Effective工具条第一个快捷按钮。总共10个。
   这个程序的难点就是要自己画buttom,不然十几个buttom自己拖也累死。
   所以我用的是buttom数组,用for循环一次全部画好,同时订阅同一个Click事件。
   那么在click事件里怎么判断点击的是哪个buttom呢?还好我们可以这样做:
在画buttom的时候
for (int i=0,i<10,i++)
{
      .......
      BTN[i].name="Buttom"+i;
}
然后在click事件里将传入的object sender实例化
Buttom checknum=(buttom)sender //将sender强制转化为buttom
因为在初始化时名字长度都是相等的,接下来对sender.name[6]做判断就好了

后面我遇到比较麻烦的是全局热键的设定,这个我在《C#入门经典》和《C#高级编程》都没有见过
网上找了好久才练会了其中一个方法:
我现在将找到的代码发上,里面代码改过了,原版作者是谁我也忘了...不好意思,希望对希望用到全局快捷键的朋友有帮助
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;


namespace HotkeyTest
{
        
public enum KeyModifiers //组合键枚举
    {
        None 
= 0,
        Alt 
= 1,
        Control 
= 2,
        Shift 
= 4,
        Windows 
= 8
    }
 

    
public partial class Form_HKTest : Form
    
{
        
/*
 * RegisterHotKey函数原型及说明:
 * BOOL RegisterHotKey(
 * HWND hWnd,         // window to receive hot-key notification
 * int id,            // identifier of hot key
 * UINT fsModifiers, // key-modifier flags
 * UINT vk            // virtual-key code);
 * 参数 id为你自己定义的一个ID值
 * 对一个线程来讲其值必需在0x0000 - 0xBFFF范围之内,十进制为0~49151
 * 对DLL来讲其值必需在0xC000 - 0xFFFF 范围之内,十进制为49152~65535
 * 在同一进程内该值必须唯一参数 fsModifiers指明与热键联合使用按键
 * 可取值为:MOD_ALT MOD_CONTROL MOD_WIN MOD_SHIFT参数,或数字0为无,1为Alt,2为Control,4为Shift,8为Windows
 * vk指明热键的虚拟键码
 
*/


        [System.Runtime.InteropServices.DllImport(
"user32.dll")] //申明API函数
        public static extern bool RegisterHotKey(
         IntPtr hWnd, 
// handle to window 
         int id, // hot key identifier 
         uint fsModifiers, // key-modifier options 
         Keys vk // virtual-key code 
        );
        [System.Runtime.InteropServices.DllImport(
"user32.dll")] //申明API函数
        public static extern bool UnregisterHotKey(
        IntPtr hWnd, 
// handle to window 
         int id // hot key identifier 
        );

        
//主窗体构造函数
        public Form_HKTest()
        
{
            InitializeComponent();
        }


        
private void ProcessHotkey(Message m) //按下设定的键时调用该函数
        {
            IntPtr id 
= m.WParam; //IntPtr用于表示指针或句柄的平台特定类型
            
//MessageBox.Show(id.ToString());
            string sid = id.ToString();
            
switch (sid)
            
{
                
case "100":
                    
this.BTN_HK1.PerformClick();
                    
break;
                
case "200":
                    
this.BTN_UNRegister.PerformClick();
                    
break;
            }

        }


        
private void BTN_HK1_Click(object sender, EventArgs e)
        
{
            MessageBox.Show(
"Alt+1快捷键测试""快捷键测试");
        }


        
private void Form_HKTest_Load(object sender, EventArgs e)
        
{
            
//Handle为当前窗口的句柄,继续自Control.Handle,Control为定义控件的基类
            
//RegisterHotKey(Handle, 100, 0, Keys.A); //注册快捷键,热键为A
            
//RegisterHotKey(Handle, 100, KeyModifiers.Alt | KeyModifiers.Control, Keys.B);//这时热键为Alt+CTRL+B
            
//RegisterHotKey(Handle, 100, 1, Keys.B); //1为Alt键,热键为Alt+B
            RegisterHotKey(Handle, 1002,Keys.A); //定义热键为CTRL+A
            RegisterHotKey(Handle, 2002, Keys.B); //注册2个热键,根据id值100,200来判断需要执行哪个函数
        }


        
private void BTN_UNRegister_Click(object sender, EventArgs e)
        
{
            UnregisterHotKey(Handle, 
100);//卸载快捷键
            UnregisterHotKey(Handle, 200);
            MessageBox.Show(
"全局热键卸载完毕""卸载快捷键");
     
//       RegisterHotKey(Handle, 100, 2, Keys.C); //注册新的快捷键,参数0表示无组合键
        }

                
//重写WndProc()方法,通过监视系统消息,来调用过程
        protected override void WndProc(ref Message m)//监视Windows消息
        {
            
const int WM_HOTKEY = 0x0312;//如果m.Msg的值为0x0312那么表示用户按下了热键
            switch (m.Msg)
            
{
                
case WM_HOTKEY:
                    ProcessHotkey(m);
//按下热键时调用ProcessHotkey()函数
                    break;//上面m传入判断的就是当初在handle下面定义的ID(100,200)
            }

            
base.WndProc(ref m); //将系统消息传递自父类的WndProc
        }


        
private void Form_HKTest_FormClosing(object sender, FormClosingEventArgs e)//订阅了窗体关闭的事件
        {
            UnregisterHotKey(Handle, 
100);//卸载第1个快捷键
            UnregisterHotKey(Handle, 200); //缷载第2个快捷键
        }

    }

}

这样程序就基本完成了,具体代码不一一贴出了,主要第一次....我的代码可能乱的不是简单人能看懂的

程序源码给大家:
网上找到的,看着比较顺眼的,经过我改写后又不太顺眼的全局热键测试代码:
 Skydrive下载地址http://cid-856b7a1fbf560755.skydrive.live.com/self.aspx/My%20free%20softwares/HotKey%20Test.rar
希望大家能够喜欢。不喜欢也不要PIA我....

Copyright © 2024 Samson小天
Powered by .NET 8.0 on Kubernetes