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