DataGrid是否可以动态增加TemplateColumn
在DataGrid的TemplateColumn里一般是放置link button和check box。我看到可以在后台代码里动态增加BoundColumn。比如
Store = new DataTable();
Store.Columns.Add(new DataColumn( "Tax ", typeof(String)));
Store.Columns.Add(new DataColumn( "Item ", typeof(String)));
Store.Columns.Add(new DataColumn( "Price ", typeof(String)));
DataGrid MyDataGrid.DataSource = Store;
MyDataGrid.DataBind();
那么我在TemplateColumn里放置一个link button,能不能把它用代码添加到DataGrid里呢?该怎样做呢?
------解决方案--------------------mark