본문 바로가기
카테고리 없음

[C#] listview에 button추가시 샘플2

by 창용이랑 2021. 8. 10.
728x90
for (int i = 0; i < 10; i++)
{
    string istr = i.ToString();

    Button newButton = new Button();
    newButton.Text = istr;
    newButton.Name = "btn" + istr;
    newButton.Visible = true;
    newButton.BackColor = Color.AliceBlue;
    newButton.ForeColor = Color.Black;

    listBox1.Controls.Add(newButton);
    newButton.Dock = DockStyle.Top;
    newButton.BringToFront();
}