我想要一个显示单词 Seq(这是一个列名)的文本框,然后在它下面列出来自 mylist 的值。到目前为止,列表中的值出现了,但 Seq 一词没有出现
private void button7_Click(object sender, EventArgs e)
{
if (seq1)
{
textBox1.Text = " Seq"; // This guy doesn't showup in the textbox
foreach (object o in SeqIrregularities)
{
textBox1.Text = String.Join(Environment.NewLine, SeqIrregularities);
}
}
}