1 Star 1 Fork 0

VectorTree/JiaXin_XiaoXing_ReportSystem

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
testMessageFilter.vb 478 Bytes
一键复制 编辑 原始数据 按行查看 历史
VectorTree 提交于 2021-06-29 16:28 . 原始
Public Class TestMessageFilter
Implements IMessageFilter
Public Function PreFilterMessage(ByRef m As System.Windows.Forms.Message) _
As Boolean Implements IMessageFilter.PreFilterMessage
' Blocks all the messages relating to the left mouse button.
If ((m.Msg >= 513) And (m.Msg <= 515)) Then
Console.WriteLine("Processing the messages : " & m.Msg)
Return True
End If
Return False
End Function
End Class
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/AllocateMyAddress/jia-xin_-xiao-xing_-report-system.git
git@gitee.com:AllocateMyAddress/jia-xin_-xiao-xing_-report-system.git
AllocateMyAddress
jia-xin_-xiao-xing_-report-system
JiaXin_XiaoXing_ReportSystem
master

搜索帮助