![]() |
#2
黑火药2014-12-22 12:24
|
一个按钮,一个文本框,按钮的点击事件
private void button1_Click(object sender, EventArgs e)
{
textBox1.Lines[0] = "111";
textBox1.Lines[1] = "222";
textBox1.Lines[2] = "333"; }
就这么简单,但是好像显示数组越界什么的怎么回事