我正在尝试将按钮列插入数据表,但它说它是一个错误。任何帮助请求?
ButtonColumn col = new ButtonColumn();
col.CommandName = "select";
col.ButtonType = ButtonColumnType.LinkButton;
col.HeaderText = "Edit";
dt.Columns.Add(col);
答案 0 :(得分:5)
在DataTable中添加Buttoncolumn,它有点......根本不可能...
DataTable DataColumn DataType 属性支持以下基本.NET Framework数据类型:
添加coplumn的示例代码
DataTable workTable = new DataTable("Customers");
DataColumn workCol = workTable.Columns.Add("CustID", typeof(Int32));
workCol.AllowDBNull = true;
答案 1 :(得分:4)
您只能在button
而不是DataGrid
上添加DataTable
。