我正在尝试将按钮列插入数据表,但它说它是一个错误。请问有什么帮助吗?
ButtonColumn col = new ButtonColumn();
col.CommandName = "select";
col.ButtonType = ButtonColumnType.LinkButton;
col.HeaderText = "Edit";
dt.Columns.Add(col);
在 DataTable 中添加 Buttoncolumn 其有线...这根本不可能...
DataTable DataColumn DataType属性支持以下基本 .NET Framework 数据类型:
添加列的示例代码
DataTable workTable = new DataTable("Customers");
DataColumn workCol = workTable.Columns.Add("CustID", typeof(Int32));
workCol.AllowDBNull = true;
您可以在not上添加button
only 。DataGrid
DataTable