32 lines
698 B
C#
32 lines
698 B
C#
|
using ryCommon;
|
|||
|
using ryControls;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Data;
|
|||
|
using System.Drawing;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Windows.Forms;
|
|||
|
using WeifenLuo.WinFormsUI.Docking;
|
|||
|
|
|||
|
namespace 开发辅助工具.Tools
|
|||
|
{
|
|||
|
public partial class FrmKeyBroad : DockContent
|
|||
|
{
|
|||
|
public FrmKeyBroad()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
}
|
|||
|
|
|||
|
private void FrmStrCount_Load(object sender, EventArgs e)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
private void TxtKeys_KeyDown(object sender, KeyEventArgs e)
|
|||
|
{
|
|||
|
TxtKeys.Text =e.KeyCode.ToString()+"["+e.KeyValue.ToString()+"]";
|
|||
|
}
|
|||
|
}
|
|||
|
}
|