0
當我向它添加圖標時,我在GridView中看到了一個醜陋的空白,我做錯了什麼?在添加圖標後出現Gridview間隙
gvTuteeListPG.Rows[rowCount].Cells[0].ForeColor = Color.Goldenrod;
gvTuteeListPG.Rows[rowCount].Cells[0].CssClass = "fa fa-exclamation-circle";
當我向它添加圖標時,我在GridView中看到了一個醜陋的空白,我做錯了什麼?在添加圖標後出現Gridview間隙
gvTuteeListPG.Rows[rowCount].Cells[0].ForeColor = Color.Goldenrod;
gvTuteeListPG.Rows[rowCount].Cells[0].CssClass = "fa fa-exclamation-circle";
你不應該直接適用於fa fa-exclamation-circle
表格單元格。
取而代之,插入一個範圍標籤類。
var span = new HtmlGenericControl();
span.Attributes["class"] = "fa fa-exclamation-circle";
gvTuteeListPG.Rows[rowCount].Cells[0].ForeColor = Color.Goldenrod;
gvTuteeListPG.Rows[rowCount].Cells[0].Controls.Add(span);
你可以請嘗試將邊界應用到網格視圖並嘗試找出那個差距是什麼?你可能會得到解決方案。一旦應用邊框,請使用瀏覽器開發人員工具欄檢查單元格值。 – PJS