0
我正在嘗試在C#Winforms應用程序中創建一個DataGridView。C#Resize DataGridView列寬
我以下列方式增加entrys:
private void Form1_Load(object sender, EventArgs e)
{
table.Columns.Add("Username", typeof(string));
table.Columns.Add("Status", typeof(string));
table.Rows.Add("first", "second");
bunifuCustomDataGrid1.DataSource = table;
}
但我不能得到數據網格的尺寸爲100%。
截圖:
我怎麼可能使它佔滿DataGrid?
請接受一個答案,如果它解決您的問題。否則,你可以寫評論來回答並描述爲什麼它不能幫助你 –