c#

位置:IT落伍者 >> c# >> 浏览文章

用C#代码编写的SN快速输入工具


发布日期:2018年07月17日
 
用C#代码编写的SN快速输入工具

一般软件都要输入序列号(SN)而大家平时用的最多的恐怕是盗版软件通常盗版软件的序列号(SN)都保存成XXXXXXXXXXXXXXXXXX的形式

而软件输入序列号的地方通常都是几个文本框(TextBox)组成一个个的将XXXXX复制到文本框将非常麻烦于是SN快速输入工具便由此产生了

当然这些都和我的编写这个程序的原因无关我编写这个程序的原因纯粹是因为有个网友和他舅舅打赌说要编写个程序而他舅舅就是要他编写这个程序但可惜我的这位网友才是个编程初学者(比我更菜的菜鸟)当然完成不了这个看似简单实际要用到许多编程知识的程序咯

要做这个程序首先当然是要了解程序的功能了它的功能就是要让你复制完了形式如XXXXXXXXXXXXXXXXXX的序列号之后当你把鼠标指向文本框程序能自动将XXXXX添加到相应的文本框中

既然是要处理复制的序列号那么我们肯定要用到和剪贴板相关的东西了剪贴板还好这个我以前在C#中用过N次了不用再查windows api了C#里面本来就提供了Clipboard这个类

于是就用到了string ClipboardGetText()这个静态方法将刚才复制的带的序列号取出来然后用个string类型的变量strKeys保存在我的程序中以便使用

第一步从剪贴板里面取数据我们就完成了

接着我们该考虑怎么处理我们的数据了我们的数据最后是要写到几个连续的文本框中的那么我们可以考虑通过StringSplit(char[]string splitoption)这个方法将序列号分割成几个子字符串然后再通过windows api讲文本输出到相应的textbox句柄上但是这样做无疑增加了程序的难度几个连续的文本框的切换使用Tab键就能做到了然后将文本输出到文本框中直接让键盘打出来就ok了那么很明显我们只需要将我们要按的键模拟出来就行了这个时候我首先想到的是windows api中键盘模拟事件keybd_event于是我开始在MSDN中查询keybd_event方法方法中有个KEYEVENTF_KEYUP这个参数但是我不知道他相应的值于是我开始查找这个长整形的值但是始终都找不到就在我在MSDN中查找KEYUP相关的东西的时候我突然发现了SystemWindowsFormSendKeys这个类原 framework已经将keybd_event这个非托管对象的方法封装到SendKeys这个类中了直接使用SendKeys这个类就可以模拟键盘操作了

再查询Tab键的写法就是{Tab}

那么我只要将原来文本strKeys中的全部转换成{Tab}然后再交给SendKeys这个类来处理这个程序就基本完成了于是有了

strKeysReplace( {TAB});

SendKeysSend(strKeys);

这两行代码

这样就有了我的程序的主过程

private void ProcessHotkey()//主处理程序

{

strKeys = ClipboardGetText();

strKeysReplace( {TAB});

SendKeysSend(strKeys);

}

但是我们怎么通过快捷键来触发来完成这个过程了

于是我开始在百度和MSDN查找相关处理全局快捷键的windows api的资料

要设置快捷键必须使用userdll下面的两个方法

BOOL RegisterHotKey(

HWND hWnd

int id

UINT fsModifiers

UINT vk

);

BOOL UnregisterHotKey(

HWND hWnd

int id

);

转换成C#代码那么首先就要引用命名空间SystemRuntimeInteropServices;来加载非托管类userdll于是有了

[DllImport(userdll SetLastError=true)]

public static extern bool RegisterHotKey(

IntPtr hWnd // handle to window

int id // hot key identifier

KeyModifiers fsModifiers // keymodifier options

Keys vk // virtualkey code

);

[DllImport(userdll SetLastError=true)]

public static extern bool UnregisterHotKey(

IntPtr hWnd // handle to window

int id // hot key identifier

);

[Flags()]

public enum KeyModifiers

{

None =

Alt =

Control =

Shift =

Windows =

}

这是注册和卸载全局快捷键的方法那么我们只需要在Form_Load的时候加上注册快捷键的语句在FormClosing的时候卸载全局快捷键同时为了保证剪贴板的内容不受到其他程序调用剪贴板的干扰在Form_Load的时候我先将剪贴板里面的内容清空

于是有了

private void Form_Load(object sender SystemEventArgs e)

{

labelAutoSize = true;

ClipboardClear();//先清空剪贴板防止剪贴板里面先复制了其他内容

RegisterHotKey(Handle KeysF);

}

private void Form_FormClosing(object sender FormClosingEventArgs e)

{

UnregisterHotKey(Handle );//卸载快捷键

}

那么我们在别的窗口怎么让按了快捷键以后调用我的主过程ProcessHotkey()呢?

那么我们就必须重写WndProc()方法通过监视系统消息来调用过程

protected override void WndProc(ref Message m)//监视Windows消息

{

const int WM_HOTKEY = x;//按快捷键

switch (mMsg)

{

case WM_HOTKEY:

ProcessHotkey();//调用主处理程序

break;

}

baseWndProc(ref m);

}

这样我的程序就完成了

全部代码

using System;

using SystemDrawing;

using SystemCollections;

using SystemComponentModel;

using SystemWindowsForms;

using SystemData;

using SystemRuntimeInteropServices;

namespace WindowsApplication

{

///

/// Form 的摘要说明

///

public class Form : SystemWindowsFormsForm

{

///

/// 必需的设计器变量

///

private SystemComponentModelContainer components = null;

public Form()

{

//

// Windows 窗体设计器支持所必需的

//

InitializeComponent();

//

// TODO: 在 InitializeComponent 调用后添加任何构造函数代码

//

}

///

/// 清理所有正在使用的资源

///

protected override void Dispose( bool disposing )

{

if( disposing )

{

if (components != null)

{

componentsDispose();

}

}

baseDispose( disposing );

}

#region Windows 窗体设计器生成的代码

///

/// 设计器支持所需的方法 不要使用代码编辑器修改

/// 此方法的内容

///

private void InitializeComponent()

{

thislabel = new SystemWindowsFormsLabel();

thislabel = new SystemWindowsFormsLabel();

thislabel = new SystemWindowsFormsLabel();

thislabel = new SystemWindowsFormsLabel();

thislabel = new SystemWindowsFormsLabel();

thisSuspendLayout();

//

// label

//

thislabelAutoSize = true;

thislabelLocation = new SystemDrawingPoint( );

thislabelName = label;

thislabelSize = new SystemDrawingSize( );

thislabelTabIndex = ;

thislabelText = EoStion制作;

//

// label

//

thislabelAutoSize = true;

thislabelLocation = new SystemDrawingPoint( );

thislabelName = label;

thislabelSize = new SystemDrawingSize( );

thislabelTabIndex = ;

thislabelText = 使用方法;

//

// label

//

thislabelAutoSize = true;

thislabelLocation = new SystemDrawingPoint( );

thislabelName = label;

thislabelSize = new SystemDrawingSize( );

thislabelTabIndex = ;

thislabelText = 将序列号拷贝到剪切板;

//

// label

//

thislabelAutoSize = true;

thislabelLocation = new SystemDrawingPoint( );

thislabelName = label;

thislabelSize = new SystemDrawingSize( );

thislabelTabIndex = ;

thislabelText = 将光标定位到序列号输入处;

//

// label

//

thislabelAutoSize = true;

thislabelLocation = new SystemDrawingPoint( );

thislabelName = label;

thislabelSize = new SystemDrawingSize( );

thislabelTabIndex = ;

thislabelText = 按F;

//

// Form

//

thisAutoScaleBaseSize = new SystemDrawingSize( );

thisClientSize = new SystemDrawingSize( );

thisControlsAdd(thislabel);

thisControlsAdd(thislabel);

thisControlsAdd(thislabel);

thisControlsAdd(thislabel);

thisControlsAdd(thislabel);

thisName = Form;

thisText = SN输入工具(C#版Version);

thisFormClosing += new SystemWindowsFormsFormClosingEventHandler(thisForm_FormClosing);

thisLoad += new SystemEventHandler(thisForm_Load);

thisResumeLayout(false);

thisPerformLayout();

}

#endregion

///

/// 应用程序的主入口点

///

[STAThread]

static void Main()

{

ApplicationRun(new Form());

}

[DllImport(userdll SetLastError=true)]

public static extern bool RegisterHotKey( IntPtr hWnd

// handle to window

int id // hot key identifier

KeyModifiers fsModifiers // keymodifier options

Keys vk // virtualkey code

);

[DllImport(userdll SetLastError=true)]

public static extern bool UnregisterHotKey( IntPtr hWnd

// handle to window

int id // hot key identifier

);

[Flags()]

public enum KeyModifiers

{

None =

Alt =

Control =

Shift =

Windows =

}

private void ProcessHotkey()//主处理程序

{

strKeys = ClipboardGetText();

strKeysReplace( {TAB});

SendKeysSend(strKeys);

}

private Label label;

private Label label;

private Label label;

private Label label;

private Label label;

string strKeys;

private void Form_Load(object sender SystemEventArgs e)

{

labelAutoSize = true;

ClipboardClear();//先清空剪贴板防止剪贴板里面先复制了其他内容

RegisterHotKey(Handle KeysF);

}

private void Form_FormClosing(object sender FormClosingEventArgs e)

{

UnregisterHotKey(Handle );//卸载快捷键

}

protected override void WndProc(ref Message m)//循环监视Windows消息

{

const int WM_HOTKEY = x;//按快捷键

switch (mMsg)

{

case WM_HOTKEY:

ProcessHotkey();//调用主处理程序

break;

}

baseWndProc(ref m);

}

}

}

               

上一篇:.NET Framework不同组件区别及安装

下一篇:.Net PetShop 4.0的层次结构