当我将字符串输出到 Windows 窗体中的选中列表框中时,只有字符串的第一行显示在复选框旁边
本文关键字:字符串 一行 复选框 显示 Windows 输出 窗体 列表 | 更新日期: 2023-09-27 18:32:44
>当我点击下面的按钮方法时
private void button1_Click(object sender, EventArgs e)
{
string output;
//Concatenate the text value of the 3 text boxes
output = "Task: " + this.textBoxTask.Text + "'r'n";
output += "Description: " + this.textBoxDescription.Text + "'r'n";
output += "Due Date: " + this.textBoxDueDate.Text + "'r'n";
this.checkedListBoxTasks.Items.Add(output);
}
在复选框旁边显示的"任务:我在文本框中写的任何内容"行,是否可以使其显示其他两行?
试试这个。
this.checkedListBoxTasks.Items.Add(this.textBoxTask.Text);
this.checkedListBoxTasks.Items.Add(this.textBoxDescription.Text);
this.checkedListBoxTasks.Items.Add(this.textBoxDueDate.Text);
希望这对你有帮助。:D
尝试使用 System.Text 命名空间中的 StringBuilder 类进行字符串连接。