C#中KeyPress事件转换焦点的相关问题!(有图片)
每次输入完密码时都得按两下回车键才能实现登录!怎样才能输入完密码后按回车键直接实现登录!我的代码:privatevoidtname_KeyPress(objectsend...
每次输入完密码时都得按两下回车键才能实现登录!怎样才能输入完密码后按回车键直接实现登录!
我的代码:private void tname_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == 13)
{
tpwd.Focus(); e.Handled = true;
}
tname是用户名文本框,tpwd是密码的文本框。
private void tname_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == 13)
{
tpwd.Focus(); e.Handled = true;
}
}
private void tpwd_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == 13)
{
btnok.Focus(); e.Handled = true;
}
} 展开
我的代码:private void tname_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == 13)
{
tpwd.Focus(); e.Handled = true;
}
tname是用户名文本框,tpwd是密码的文本框。
private void tname_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == 13)
{
tpwd.Focus(); e.Handled = true;
}
}
private void tpwd_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == 13)
{
btnok.Focus(); e.Handled = true;
}
} 展开
5个回答
展开全部
汗。。
在你的tpwd的keyPress事件中:
if (e.KeyChar == 13)
{
if(string.Compare(tname.Text,"用户名")==0
&&string.Compare(tpwd.Text,"对应的密码")==0)
{
//ViewWorkForm();//这里执行进入工作窗体的显示代码。
}
else
{
//此处你可以加个判断看看两个框中是不是输入了内容,若未输入
//你就不提示或执行你想要的操作。
MessageBox.Show("用户名或密码错误");
tpwd.Focus(); e.Handled = true;
}
}
在你的tpwd的keyPress事件中:
if (e.KeyChar == 13)
{
if(string.Compare(tname.Text,"用户名")==0
&&string.Compare(tpwd.Text,"对应的密码")==0)
{
//ViewWorkForm();//这里执行进入工作窗体的显示代码。
}
else
{
//此处你可以加个判断看看两个框中是不是输入了内容,若未输入
//你就不提示或执行你想要的操作。
MessageBox.Show("用户名或密码错误");
tpwd.Focus(); e.Handled = true;
}
}
展开全部
把acceptbuttons属性设置为确定按钮就可以了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
tname是用户名文本框吧?
tpwd的代码你又没发出来,让人怎么看
tpwd的代码你又没发出来,让人怎么看
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2010-06-07
展开全部
tname是用户名文本框;tpwd是密码文本框。
private void tname_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == 13)
{
tpwd.Focus(); e.Handled = true;
}
}
private void tpwd_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == 13)
{
btnok.Focus(); e.Handled = true;
}
}
private void tname_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == 13)
{
tpwd.Focus(); e.Handled = true;
}
}
private void tpwd_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == 13)
{
btnok.Focus(); e.Handled = true;
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
放到 密码的 keyclick 事件里
如果是 e.keyChar == 13
如果是 e.keyChar == 13
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询