我想将“主题号”的列标题向右移动。复选框列中不应有标题。
获取复选框的代码是这样的;
protected void GridView1_DataBound(object sender, EventArgs e)
{
foreach (GridViewRow objRow in GridView1.Rows)
{
TableCell tcCheckCell = new TableCell();
CheckBox chkCheckBox = new CheckBox();
tcCheckCell.Controls.Add(chkCheckBox);
objRow.Cells.AddAt(0, tcCheckCell);
}
}
我使用 DataTable 将数据获取到 GridView。
如何将该列标题向右移动?
谢谢。