1. 首页
  2. 数据库
  3. 其它
  4. C# 鼠标穿透窗体功能的实现方法

C# 鼠标穿透窗体功能的实现方法

上传者: 2020-12-31 14:02:39上传 PDF文件 30.49KB 热度 15次
同样该功能需要加载命名空间 using System.Runtime.InteropServices; 代码如下:private const uint WS_EX_LAYERED = 0x80000; private const int WS_EX_TRANSPARENT = 0x20; private const int GWL_STYLE = (-16); private const int GWL_EXSTYLE = (-20); private const int LWA_ALPHA = 0; [DllImpor
用户评论