資源簡介
利用C#編寫鍵盤記錄,按鍵會(huì)顯示在窗體的標(biāo)題中,如下圖
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.ComponentModel;
using?System.Data;
using?System.Drawing;
using?System.IO;
using?System.Linq;
using?System.Text;
using?System.Windows.Forms;
namespace?鍵盤記錄
{
????public?partial?class?frm主窗口?:?Form
????{
????????public?frm主窗口()
????????{
????????????InitializeComponent();
????????}
????????private?void?frm主窗口_Load(object?sender?EventArgs?e)
????????{
????????????KeyboardHook?kh?=?new?KeyboardHook();
????????????kh.SetHook();
????????????kh.onkeydownEvent?+=?kh_onkeydownEvent;
????????}
????????void?kh_onkeydownEvent(object?sender?KeyEventArgs?e)
????????{
????????????this.Text?=?e.KeyData.ToString();
????????????//記錄鍵盤事件可記錄QQ等鍵盤按下的消息
????????????string?down?=?e.KeyData.ToString();
????????????if?(!
?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2017-05-15?21:08??鍵盤記錄\
?????目錄???????????0??2017-05-15?21:22??鍵盤記錄\鍵盤記錄\
?????文件????????1005??2017-05-15?21:08??鍵盤記錄\鍵盤記錄.sln
?????文件???????59904??2017-05-15?21:23??鍵盤記錄\鍵盤記錄.v12.suo
?????目錄???????????0??2017-05-15?21:09??鍵盤記錄\鍵盤記錄\bin\
?????目錄???????????0??2017-05-15?21:22??鍵盤記錄\鍵盤記錄\bin\Debug\
?????目錄???????????0??2017-05-15?21:22??鍵盤記錄\鍵盤記錄\bin\Debug\log\
?????文件?????????375??2017-05-15?21:23??鍵盤記錄\鍵盤記錄\bin\Debug\log\201751521.log
?????文件????????5120??2017-05-15?21:05??鍵盤記錄\鍵盤記錄\bin\Debug\Win32api.dll
?????文件???????11776??2017-05-15?21:22??鍵盤記錄\鍵盤記錄\bin\Debug\鍵盤記錄.exe
?????文件???????30208??2017-05-15?21:22??鍵盤記錄\鍵盤記錄\bin\Debug\鍵盤記錄.pdb
?????文件???????22656??2017-05-15?21:23??鍵盤記錄\鍵盤記錄\bin\Debug\鍵盤記錄.vshost.exe
?????目錄???????????0??2017-05-15?21:09??鍵盤記錄\鍵盤記錄\bin\Release\
?????文件????????1295??2017-05-15?21:22??鍵盤記錄\鍵盤記錄\frm主窗口.cs
?????文件????????1499??2017-05-15?21:19??鍵盤記錄\鍵盤記錄\frm主窗口.Designer.cs
?????文件????????5817??2017-05-15?21:19??鍵盤記錄\鍵盤記錄\frm主窗口.resx
?????文件????????5232??2017-05-15?21:15??鍵盤記錄\鍵盤記錄\KeyboardHook.cs
?????目錄???????????0??2017-05-15?21:08??鍵盤記錄\鍵盤記錄\obj\
?????目錄???????????0??2017-05-15?21:22??鍵盤記錄\鍵盤記錄\obj\Debug\
?????文件?????????865??2017-05-15?21:08??鍵盤記錄\鍵盤記錄\obj\Debug\DesignTimeResolveAssemblyReferences.cache
?????文件????????6930??2017-05-15?21:13??鍵盤記錄\鍵盤記錄\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
?????目錄???????????0??2017-05-15?21:08??鍵盤記錄\鍵盤記錄\obj\Debug\TempPE\
?????文件?????????761??2017-05-15?21:23??鍵盤記錄\鍵盤記錄\obj\Debug\鍵盤記錄.csproj.FileListAbsolute.txt
?????文件?????????984??2017-05-15?21:22??鍵盤記錄\鍵盤記錄\obj\Debug\鍵盤記錄.csproj.GenerateResource.Cache
?????文件????????5458??2017-05-15?21:12??鍵盤記錄\鍵盤記錄\obj\Debug\鍵盤記錄.csprojResolveAssemblyReference.cache
?????文件???????11776??2017-05-15?21:22??鍵盤記錄\鍵盤記錄\obj\Debug\鍵盤記錄.exe
?????文件?????????180??2017-05-15?21:22??鍵盤記錄\鍵盤記錄\obj\Debug\鍵盤記錄.frm主窗口.resources
?????文件???????30208??2017-05-15?21:22??鍵盤記錄\鍵盤記錄\obj\Debug\鍵盤記錄.pdb
?????文件?????????180??2017-05-15?21:13??鍵盤記錄\鍵盤記錄\obj\Debug\鍵盤記錄.Properties.Resources.resources
?????文件?????????500??2017-05-15?21:09??鍵盤記錄\鍵盤記錄\Program.cs
?????目錄???????????0??2017-05-15?21:08??鍵盤記錄\鍵盤記錄\Properties\
............此處省略6個(gè)文件信息
評(píng)論
共有 條評(píng)論