[研究][ASP.NET]GridView 設定欄位最小寬度限制
2021-06-02
ASP.NET + C# + WinForm + CSS
protected void Page_Load(object sender, EventArgs e) { // 設定某欄位最小寬度 40px GridView1.HeaderRow.Cells[16].Attributes.Add("style", "min-width: 40px"); // 設定一批欄位有相同最小寬度 string minWidth = "min-width: 50px"; GridView1.HeaderRow.Cells[3].Attributes.Add("style", minWidth); GridView1.HeaderRow.Cells[4].Attributes.Add("style", minWidth); GridView1.HeaderRow.Cells[15].Attributes.Add("style", minWidth); } |
(完)
沒有留言:
張貼留言