Adding new columns to a Winforms DataGridView via code

前端 未结 4 2374
情歌与酒
情歌与酒 2021-02-19 05:43

I\'m trying to add N number of columns for each days of a given month:

var daysCount = DateTime.DaysInMonth(DateTime.Now.Year, month);

for (int i = 1; i <= d         


        
4条回答
  •  迷失自我
    2021-02-19 06:21

    You need to specify first whether it's a textbox column or combobox column Try this it will work

    var daysCount = DateTime.DaysInMonth(DateTime.Now.Year, month);
    
    for (int i = 1; i <= daysCount; i++)
    {
        dataGridView1.Columns.Add(new DataGridViewTextBoxColumn() { HeaderText = i.ToString() });
    }
    

提交回复
热议问题