展开全部
你是非要按下enter之后才改变是吗?
边输入边改变标题不符合你的意愿,对吗?
Private Sub Text1_KeyPress(KeyAscii As Integer)
If (KeyAscii = 13) Then
Form1.Caption = Text1.Text
End If
End Sub
边输入边改变标题不符合你的意愿,对吗?
Private Sub Text1_KeyPress(KeyAscii As Integer)
If (KeyAscii = 13) Then
Form1.Caption = Text1.Text
End If
End Sub
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你要给你text添加一个 KeyPress事件,这样就可以判断在按回车时设置窗体的text值
private void txtLocalIP_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == 13)
{
this.Text = this.txtLocalIP.Text;
}
}
private void txtLocalIP_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == 13)
{
this.Text = this.txtLocalIP.Text;
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
代码如下,不解释~
Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then Form1.Caption = Text1.Text
End Sub
Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then Form1.Caption = Text1.Text
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询