C# textbox 中写下keydown用来快捷输入但是输入会把快捷键一起带入
privatevoidtextBox20_KeyDown(objectsender,KeyEventArgse){if(e.KeyCode==Keys.S){this.t...
private void textBox20_KeyDown(object sender, KeyEventArgs e)
{
if(e.KeyCode==Keys.S)
{
this.textBox20.Text = "男";
}
else if(e.KeyCode==Keys.D)
{
this.textBox20.Text = "女";
}
else if(e.KeyCode==Keys.F)
{
this.textBox20.Text = "无";
}
}
代码如上
输出结果是 s男 d女 f无,把快捷键的字符也带进去了?
现在是这样的,本来按S 应该出来 “男”, 现在出来的是“s男” 怎么让它不要出现那个s 展开
{
if(e.KeyCode==Keys.S)
{
this.textBox20.Text = "男";
}
else if(e.KeyCode==Keys.D)
{
this.textBox20.Text = "女";
}
else if(e.KeyCode==Keys.F)
{
this.textBox20.Text = "无";
}
}
代码如上
输出结果是 s男 d女 f无,把快捷键的字符也带进去了?
现在是这样的,本来按S 应该出来 “男”, 现在出来的是“s男” 怎么让它不要出现那个s 展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励30(财富值+成长值)
2个回答
展开全部
if(e.KeyCode==Keys.S)
{
e.handled = true; //每个里面加个这个就行了
this.textBox20.Text = "男";
}
{
e.handled = true; //每个里面加个这个就行了
this.textBox20.Text = "男";
}
追问
还是不行呢 一样的会有
追答
那就在keypress下写,不过这样会闪,下面这样写的话不会闪
private void textBox1_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.S)
{
e.Handled = true;
this.textBox1.Text = "nan";
}
}
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == 83 || e.KeyChar == 115)
{
e.Handled = true;
this.textBox1.Text = "nan";
}
}
private void textBox1_KeyUp(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.S)
{
e.Handled = true;
this.textBox1.Text = "nan";
}
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询