【例子介绍】(C#源码)锁定windows界面,但可以看见系统运行程序
在,winxp、win2000、win2003下测试通过
【相关图片】
【源码结构】
文件清单
├── App.ico
├── AssemblyInfo.cs
├── bin
│ ├── Debug
│ │ ├── HK_KeyBoardCtr.dll
│ │ ├── LockWindows.exe
│ │ ├── LockWindows.pdb
│ │ └── para.ini
│ └── Release
│ ├── HK_KeyBoardCtr.dll
│ ├── LockWindows.exe
│ ├── para.ini
│ └── 使用须知.txt
├── Form1.cs
├── Form1.resx
├── FormPWD.cs
├── FormPWD.resx
├── GlobalInfo.cs
├── LockWindows.csproj
├── LockWindows.csproj.user
├── LockWindows.sln
├── NativeWin32
│ ├── bin
│ │ ├── Debug
│ │ │ └── NativeWin32.dll
│ │ └── Release
│ │ └── NativeWin32.dll
│ ├── NativeWin32.csproj
│ ├── NativeWin32.csproj.user
│ └── obj
│ └── Debug
│ ├── NativeWin32.projdata
│ ├── temp
│ └── TempPE
├── NativeWin32.cs
├── obj
│ ├── Debug
│ │ ├── LockWindows.exe
│ │ ├── LockWindows.Form1.resources
│ │ ├── LockWindows.FormPWD.resources
│ │ ├── LockWindows.pdb
│ │ ├── LockWindows.projdata
│ │ ├── temp
│ │ └── TempPE
│ └── Release
│ ├── LockWindows.exe
│ ├── LockWindows.projdata
│ ├── temp
│ └── TempPE
├── para.ini
├── ReadFileINI.cs
└── 动态库用法.txt
18 directories, 34 files
评论