2009年11月26日 星期四

如何跨欄合併DataGrid標頭欄位?

語言:Visual C# .NET
步驟:
1. 請試著在 DataGrid 物件的 ItemCreate 事件中加入以下程式碼
private void DataGrid1_ItemCreated(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e) {

if ( e.Item.ItemType == ListItemType.Header ) {

TableCellCollection tcl = e.Item.Cells;

tcl.Clear();

tcl.Add( new TableHeaderCell() );

tcl[0].RowSpan = 2;

tcl[0].Text = "資料項目";



tcl.Add( new TableHeaderCell() );

tcl[1].ColumnSpan = 2;

tcl[1].Text = "會計科目借貸";

}

}

沒有留言:

張貼留言