代码拉取完成,页面将自动刷新
同步操作将从 CortexMi/HIDtool 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace HIDTOOL
{
class HexDecProcess
{
public static bool InputIsDec(KeyPressEventArgs e) //输入 0~9或删除,返回true
{
if (e.KeyChar == '\b')//这是允许输入退格键
return true;
if (e.KeyChar >= '0' && e.KeyChar <= '9')
return true;
if (e.KeyChar == 0x0016) //ctrl + V
return true;
if (e.KeyChar == 0x0003) //ctrl + C
return true;
return false;
}
public static bool InputIsHex(KeyPressEventArgs e) //输入 0~9 或 a~f 或 A~F 或 删除,返回true
{
if (e.KeyChar == '\b')//这是允许输入退格键
return true;
if (e.KeyChar >= '0' && e.KeyChar <= '9')
return true;
if (e.KeyChar >= 'a' && e.KeyChar <= 'f')
return true;
if (e.KeyChar >= 'A' && e.KeyChar <= 'F')
return true;
if (e.KeyChar == 0x0016) //ctrl + V
return true;
if (e.KeyChar == 0x0003) //ctrl + C
return true;
return false; //执行这一句,输入被取消
}
public static bool InputIsMAC(KeyPressEventArgs e) //输入 0~9 或 a~f 或 A~F 或 删除 或 冒号,返回true
{
if (e.KeyChar == '\b')//这是允许输入退格键
return true;
if (e.KeyChar >= '0' && e.KeyChar <= '9')
return true;
if (e.KeyChar >= 'a' && e.KeyChar <= 'f')
return true;
if (e.KeyChar >= 'A' && e.KeyChar <= 'F')
return true;
if (e.KeyChar == ':')
return true;
if (e.KeyChar == 0x0016) //ctrl + V
return true;
return false; //执行这一句,输入被取消
}
public static string Dec2Hex_TextBox(string inputDec) //十进制字符串 转换成十六进制字符串
{
string OutputHex = "";
if (inputDec != "")
{
UInt32 input = 0;
input = Convert.ToUInt32(inputDec);
OutputHex = String.Format("{0:X}", input);
}
return OutputHex;
}
public static string Hex2Dec_TextBox(string inputHex)
{
string OutputDec = "";
if (inputHex != "")
{
UInt32 input = 0;
input = Convert.ToUInt32(inputHex, 16);//16:HEX
OutputDec = String.Format("{0:D}", input);
}
return OutputDec;
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。