如何从两个文本框中获取文本以填充 Windows 窗体应用程序上的列表框?我无法将放入文本框中的文本转到列表框。
这是我到目前为止得到的代码:
private void Form1_Load(object sender, EventArgs e)
{
if (File.Exists("Contacts.txt"))
{
StreamReader Info = new StreamReader("Contacts.txt");
listBox1.Items.Clear();
while (Info.EndOfStream != true)
listBox1.Items.Add(Info.ReadLine());
Info.Close();
}
}
private void button1_Click(object sender, EventArgs e)
{
listBox1.Items.Add(textBox1.Text);
listBox1.Items.Add(textBox2.Text);
textBox1.Clear();
textBox2.Clear();
Console.WriteLine("/n");
}
但是那个 Console.WriteLine("/n"); 不在文本框的下一个条目之间放置空格