本文介绍了提示带有文本框的消息框并获取文本框的值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想要的是提示用户一个带文本框的提示框,用户输入....
What I want is to prompt the user a promptbox with a textbox with the user to type in....
然后获取用户键入的值那里......
And then get the value which the user typed in there...
提前谢谢....
推荐答案
您是否尝试过工具提示?试试这段代码。
Have you tried with tool tip? Try this code.
private void textBox1_Enter(object sender, EventArgs e)
{
TextBox TB = (TextBox)sender;
int VisibleTime = 1000; //in milliseconds
ToolTip tt = new ToolTip();
tt.Show(TB.text,TB,0,0,VisibleTime);
}
这篇关于提示带有文本框的消息框并获取文本框的值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!