如何使用C#将字符串的内容放入文本框的显示中?
感谢。
答案 0 :(得分:7)
设置Text属性。
textBox1.Text = "Hello, world!";
答案 1 :(得分:3)
string a = "My Message";
textbox1.Text = a;
答案 2 :(得分:0)
Textbox.Text属性包含Textbox的字符串。
String s = "Hello world";
// To set the text of a textbox
tbString.Text = s;
// To append string to the textbox
tbString.Text += s;