当我单击下面的按钮方法时
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);
}
在“任务:我在文本框中写的任何内容”这一行上,复选框旁边显示了是否有让它显示其他两行?