我在C#中尝试创建一个与AHK类似的热键功能。就像在任何视频游戏中一样,您在一个框中单击,按热键并将其注册。 这就是我想用textBox做的事情:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Keybinder
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
KeyPreview = true;
textBox1.ReadOnly = true;
textBox1.Focus();
}
private void Form1_Load(object sender, EventArgs e)
{
textBox1.Text = "HELLO";
}
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
char key = e.KeyChar;
string keystring = Char.ToString(key);
textBox1.Text = keystring;
}
}
}
然而,问题是,我需要关闭textBox的基本功能,但我不知道如何。例如:光标仍处于活动状态,我可以突出显示其中的文本。
答案 0 :(得分:0)
如果您不需要其功能,为什么使用TextBox?
您可以创建一个简单的自定义控件并将其放在表单上,而不是关闭它的功能。类似的东西:
public class KeyInput : UserControl
{
public string KeyString { get; set; } = "HELLO";
public KeyInput() : base()
{
BorderStyle = BorderStyle.Fixed3D;
}
protected override void OnKeyPress(KeyPressEventArgs e)
{
base.OnKeyPress(e);
KeyString = e.KeyChar.ToString();
Invalidate();
}
protected override void OnPaint(PaintEventArgs e)
{
base.OnPaint(e);
e.Graphics.DrawString(KeyString, Font, SystemBrushes.ControlText, 0, 0);
}
}
答案 1 :(得分:0)
您可以将文本框的属性Enabled设置为false,然后将背景色设置为白色,将字体设置为黑色,这样就好像没有禁用它,但是您无法聚焦或单击ir。
textBox1.Enabled = false;
顺便说一句,我有一个非常简单的库,可能有用。
https://github.com/PabloHorno/HotKeyDialog
一旦您引用了库,就可以像这样使用它 或更简单的方式
var hotKey = new HotKey();
hotKey = HotKeyMessageBox.Show("Title", "A little description");
hotKey.ToString();
或者您可以检查用户是否关闭了该框
HotKey hotkey = new HotKey();
if (HotKeyMessageBox.Show("Title", "Please press the key combination", out hotkey) == DialogResult.OK)
label.Text = "You have pressed the keys: " + hotkey.ToString();
else
label.Text = "You have closed the dialog. There is no input";
希望有帮助!