我有一个程序使用该KeyPress
事件将新字符添加到新的Label
,有点像控制台应用程序。我需要在Input
我的程序中添加一个方法,所以当我按下回车而不是执行函数时,它会返回一个字符串。我尝试让KeyPress
事件返回一个字符串,但由于明显的原因它不起作用,我该如何让它工作?
注意:我的意思是“返回一个字符串”;
如果我在哪里要求Console
等待输入,我仍然会使用该KeyPress
事件,但它会从用户返回一个字符串/输入。
我希望你理解我已经写的代码,注意它延伸到其他
我的 KeyPress 事件处理程序:
private void Form1_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == '\b') // Backspace
{
if (ll.Text != "_" && ActualText != "") // Are there any characters to remove?
{
ActualText = ll.Text.Substring(0, ActualText.Length - 1);
ll.Text = ActualText + "_";
}
}
else
if (e.KeyChar == (char)13)
{
if (!inputmode)
{
foreach (KeyValuePair<string, Action> cm in Base.Command())
{
if (ActualText == cm.Key)
{
print(ActualText);
cm.Value();
}
}
}
else
{
inputmode = false;
lastInput = ActualText;
print("Input >> "+lastInput);
}
ActualText = "";
ll.Text = ActualText + "_";
}
else
if (!Char.IsControl(e.KeyChar)) // Ignore control chars such as Enter.
{
ActualText = ActualText + e.KeyChar.ToString();
ll.Text = ActualText + "_";
}
}