我的问题是:
我有一个 GridView,它包含一个列(按钮字段)。现在我想在运行时知道我的 Grid 是否包含 Button 字段。
foreach (DataColumn col in Table.Columns)
{
ButtonField btnfield = new ButtonField();
btnfield.ButtonType = ButtonType.Image;
if (grid.Columns.Contains(btnfield))
{
grid.Columns.RemoveAt(grid.Columns.IndexOf(btnfield));
}
}
此代码不起作用。我想在没有行数据绑定的情况下完成这项任务。
问候祖海布