VB.net / IO / 获取鼠标键盘事件的钩子函数

VB.net / IO / 获取鼠标键盘事件的钩子函数

VB.net 中获取鼠标键盘的钩子函数。可以将代码粘贴至一个新建模块,然后在主程序中声明一个Hook,调用Hook的事件就可以得到鼠标键盘的返回值了。(原谅我把VB.net写出了Python风格…)

Imports System.ComponentModel
Imports System.Reflection
Imports System.Runtime.InteropServices
Imports System.Windows.Forms
Public Class SystemHook
#Region "定义结构"
    Private Structure MouseHookStruct
        Dim X,Y As 

你可能感兴趣的:(IO事件,vb.net)