新线路无效

时间:2017-12-03 20:30:11

标签: c# forms

NewLine为我的代码获取新行。但它无法正常工作

这里我试过

 private void button1_Click(object sender, EventArgs e)
    {
       string[] sss = textBox1.Text.Split(',');

        listBox1.Items.Clear();

        foreach (string item in sss)
        {

            listBox1.Items.Add("www.ebay.com/itm/" + item +"WAIT SECONDS=1"+Environment.NewLine+"TAG POS=1 TYPE=SPAN ATTR=ID:watchLabel"+Environment.NewLine+"TAG POS=1 TYPE=A ATTR=TXT:Watch"+Environment.NewLine+"WAIT SECONDS=1");
        }
    }

在c#gui中使用新行有什么不对吗?

0 个答案:

没有答案