【例子介绍】c# 模拟 屏幕键盘
【相关图片】
【源码结构】
文件清单
└── ScreenKeyboard
├── AssemblyInfo.cs
├── Bin
│ ├── CnBlogs.Youzai.HookEx.dll
│ ├── CnBlogs.Youzai.HookEx.pdb
│ ├── ScreenKeyboard.exe
│ ├── ScreenKeyboard.pdb
│ ├── ScreenKeyboard.vshost.exe
│ └── ScreenKeyboard.vshost.exe.manifest
├── CnBlogs.Youzai.HookEx
│ ├── CnBlogs.Youzai.HookEx.csproj
│ ├── CnBlogs.Youzai.HookEx.sln
│ ├── CnBlogs.Youzai.HookEx.suo
│ ├── EventSet.cs
│ ├── obj
│ │ ├── CnBlogs.Youzai.HookEx.csproj.FileList.txt
│ │ ├── Debug
│ │ │ ├── CnBlogs.Youzai.HookEx.csproj.FileListAbsolute.txt
│ │ │ ├── CnBlogs.Youzai.HookEx.dll
│ │ │ ├── CnBlogs.Youzai.HookEx.pdb
│ │ │ └── TempPE
│ │ └── Release
│ │ ├── CnBlogs.Youzai.HookEx.csproj.FileListAbsolute.txt
│ │ ├── CnBlogs.Youzai.HookEx.dll
│ │ ├── Refactor
│ │ │ └── CnBlogs.Youzai.HookEx.dll
│ │ └── TempPE
│ └── UserActivityHook.cs
├── CnBlogs.Youzai.ScreenKeyboard
│ ├── AboutBox.cs
│ ├── AboutBox.Designer.cs
│ ├── AboutBox.resx
│ ├── CnBlogs.Youzai.ScreenKeyboard.csproj
│ ├── CnBlogs.Youzai.ScreenKeyboard.csproj.user
│ ├── CnBlogs.Youzai.ScreenKeyboard.sln
│ ├── CnBlogs.Youzai.ScreenKeyboard.suo
│ ├── FormBase.cs
│ ├── ImageProcessHelper.cs
│ ├── KeyboardButton.cs
│ ├── KeyboardConstaint.cs
│ ├── Keyboard.ico
│ ├── KeyboardLight.cs
│ ├── NativeMethods.cs
│ ├── obj
│ │ ├── CnBlogs.Youzai.ScreenKeyboard.csproj.FileList.txt
│ │ ├── Debug
│ │ │ ├── CnBlogs.Youzai.ScreenKeyboard.AboutBox.resources
│ │ │ ├── CnBlogs.Youzai.ScreenKeyboard.csproj.FileListAbsolute.txt
│ │ │ ├── CnBlogs.Youzai.ScreenKeyboard.csproj.GenerateResource.Cache
│ │ │ ├── CnBlogs.Youzai.ScreenKeyboard.ScreenKeyboard.resources
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── ScreenKeyboard.exe
│ │ │ ├── ScreenKeyboard.pdb
│ │ │ └── TempPE
│ │ └── Release
│ │ ├── CnBlogs.Youzai.ScreenKeyboard.AboutBox.resources
│ │ ├── CnBlogs.Youzai.ScreenKeyboard.csproj.FileListAbsolute.txt
│ │ ├── CnBlogs.Youzai.ScreenKeyboard.csproj.GenerateResource.Cache
│ │ ├── CnBlogs.Youzai.ScreenKeyboard.ScreenKeyboard.resources
│ │ ├── Refactor
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── ScreenKeyboard.exe
│ │ └── TempPE
│ ├── Program.cs
│ ├── ScreenKeyboard.cs
│ ├── ScreenKeyboard.Designer.cs
│ └── ScreenKeyboard.resx
├── Readme.txt
├── ScreenKeyboard.sln
├── ScreenKeyboard.sln.cache
└── ScreenKeyboard.suo
16 directories, 55 files
评论