c# textbox 按下回车清除文本内容
privatevoidtextBox1_KeyDown(objectsender,KeyEventArgse){if(e.KeyCode==Keys.Enter){thi...
private void textBox1_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{
this.textBox1.Text = "";
}
}
我这么做了,但是我的textBox1是多行文本框,运行的时候每次按下回车内容是清除了但光标总是在第二行,我要光标在最开始的位置,求解 展开
{
if (e.KeyCode == Keys.Enter)
{
this.textBox1.Text = "";
}
}
我这么做了,但是我的textBox1是多行文本框,运行的时候每次按下回车内容是清除了但光标总是在第二行,我要光标在最开始的位置,求解 展开
3个回答
展开全部
这是因为你在KeyDown事件结束以后,系统还会给一个Enter回车字符给Textbox1,所以一直都会在第二行,你改成下面这样就行了
if (e.KeyCode == Keys.Enter)
{
this.textBox1.Text = "";
e.Handled = true;
}
if (e.KeyCode == Keys.Enter)
{
this.textBox1.Text = "";
e.Handled = true;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在KeyUp事件进行处理!
private void textBox1_KeyUp(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{
this.textBox1.Text = "";
}
}
如果是多行文本KeyDown的话,肯定会向文本框加入换行的!
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐于2017-12-16
展开全部
boolean tag = true;
configure:3527: error: in `/Users/niko/memcachedbuild/libevent-1.4.14-stable':
configure:3531: error: C compiler cannot create executables
See `config.log' for more details.
configure:3527: error: in `/Users/niko/memcachedbuild/libevent-1.4.14-stable':
configure:3531: error: C compiler cannot create executables
See `config.log' for more details.
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |