基本信息
源码名称:C# 屏蔽鼠标按键 示例源码
源码大小:0.05M
文件格式:.rar
开发语言:C#
更新时间:2017-01-14
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace NullificationMouse
{
public partial class Frm_Main : Form
{
public Frm_Main()
{
InitializeComponent();
}
MouseHook mouseHook = new MouseHook();
#region 设置系统热键用到的声明
[DllImport("user32.dll", SetLastError = true)]
public static extern bool RegisterHotKey(IntPtr Hwnd, int Id, KeyModifiers keyModifiers, Keys key);
[DllImport("user32.dll", SetLastError = true)]
public static extern bool UnregisterHotKey(IntPtr Hwnd, int Id);
[Flags()]
public enum KeyModifiers
{
None = 0,
Alt = 1,
Control = 2,
}
#endregion
//标识屏蔽条件
public static bool flagL = false;
public static bool flagR = false;
public static bool flagM = false;
#region 确定按钮触发的事件
private void button1_Click(object sender, EventArgs e)
{
mouseHook.StartHook();
//调用钩子后获取鼠标的按下事件
mouseHook.MouseDown = new MouseEventHandler(Mouse_Down);
}
#endregion
#region 传递鼠标事件的函数
void Mouse_Down(object sender, MouseEventArgs e)
{
AddMouseValueEvent(e.Button.ToString());
}
public void AddMouseValueEvent(string MouseValue)
{
}
#endregion
#region 设置系统热键
private void Form1_Load(object sender, EventArgs e)
{
Clipboard.Clear();
RegisterHotKey(Handle, 100, 0, Keys.F10);
flagL = false;
flagR = false;
flagM = false;
}
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
UnregisterHotKey(Handle, 100);
}
protected override void WndProc(ref Message m)
{
const int WM_Key = 0x312;
switch (m.Msg)
{
case WM_Key:
#region 释放钩子
mouseHook.UnInstallHook();
#endregion
break;
}
base.WndProc(ref m);
}
#endregion
#region 各个CheckBox间的关系
private void checkBox1_Click(object sender, EventArgs e)
{
if (checkBox1.Checked == false)
{
flagL = false;
}
else
{
flagL = true;
}
}
private void checkBox3_Click(object sender, EventArgs e)
{
if (checkBox3.Checked == false)
{
flagR = false;
}
else
{
flagR = true;
}
}
private void checkBox2_Click(object sender, EventArgs e)
{
if (checkBox2.Checked == false)
{
flagM = false;
}
else
{
flagM = true;
}
}
#endregion
}
}