0

当我单击下面的按钮方法时

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);

    }

在“任务:我在文本框中写的任何内容”这一行上,复选框旁边显示了是否有让它显示其他两行?

4

2 回答 2

2

试试这个。

this.checkedListBoxTasks.Items.Add(this.textBoxTask.Text);
this.checkedListBoxTasks.Items.Add(this.textBoxDescription.Text);
this.checkedListBoxTasks.Items.Add(this.textBoxDueDate.Text);

希望这对您有所帮助。:D

于 2012-04-30T02:04:17.507 回答
-1

尝试使用System.Text 命名空间中的StringBuilder 类进行字符串连接。

于 2012-04-30T00:01:28.547 回答