C#のフォームに1または1000のリストボックスを動的に描画したい。私は何をすべきか?SQL Serverからデータを取得し、リストボックスに入力しています。
da = new SqlDataAdapter();
dt = new DataTable();
da.SelectCommand = new SqlCommand("select column_name from information_schema.columns where table_name='"+listBox1.SelectedItem+"'", myCon);
da.Fill(dt);
int x = dt.Rows.Count;
listBox2.Items.Clear();
listBox2.Items.Add(listBox1.SelectedItem);
for (int i = 0; i < x;i++ )
listBox2.Items.Add(Convert.ToString(dt.Rows[i][0]));
myCon.Close();
このコードの助けを借りて、リストボックスを静的に描画しますが、動的に描画したい