Windows 應用程式 DataGrid資料繫結顯示中文列名
可以的private void SetDgTableStyle()
{//設定dgDisplay的顯示格式,將英文格式轉換成中文列名
//fldVehicleNum, fldMonthBillNum, fldVehicleType, fldStartDate, fldEndDate
DataGridTableStyle dgStyle = new DataGridTableStyle();
dgStyle.MappingName =this.dtFreevihecle.TableName ;
DataGridColumnStyle fldVehicleNum=new DataGridTextBoxColumn();
fldVehicleNum.MappingName = "fldVehicleNum";
fldVehicleNum.HeaderText = "車編號";
fldVehicleNum.Width = 100;
dgStyle.GridColumnStyles.Add(fldVehicleNum);
DataGridColumnStyle fldMonthBillNum=new DataGridTextBoxColumn();
fldMonthBillNum.MappingName = "fldMonthBillNum";
fldMonthBillNum.HeaderText = "月票號";
fldMonthBillNum.Width = 100;
dgStyle.GridColumnStyles.Add(fldMonthBillNum);
DataGridColumnStyle fldVehicleType=new DataGridTextBoxColumn();
fldVehicleType.MappingName = "fldVehicleType";
fldVehicleType.HeaderText = "免費型別";
fldVehicleType.Width = 100;
dgStyle.GridColumnStyles.Add(fldVehicleType);
DataGridColumnStyle fldVehicleTypePriceID=new DataGridTextBoxColumn();
fldVehicleTypePriceID.MappingName = "fldVehicleTypePriceID";
fldVehicleTypePriceID.HeaderText = "車價型別";
fldVehicleTypePriceID.Width = 100;
dgStyle.GridColumnStyles.Add(fldVehicleTypePriceID);
DataGridColumnStyle fldStartDate=new DataGridTextBoxColumn();
fldStartDate.MappingName = "fldStartDate";
fldStartDate.HeaderText = "開始時間";
fldStartDate.Width = 100;
dgStyle.GridColumnStyles.Add(fldStartDate);
DataGridColumnStyle fldEndDate=new DataGridTextBoxColumn();
fldEndDate.MappingName = "fldEndDate";
fldEndDate.HeaderText = "結束時間";
fldEndDate.Width = 100;
dgStyle.GridColumnStyles.Add(fldEndDate);
this.dgList.TableStyles.Clear();
this.dgList.TableStyles.Add (dgStyle);
}
相關文章
- 微信小程式資料資料繫結顯示NaN微信小程式NaN
- ASPxGridView的資料繫結顯示View
- 〈%# 〉與〈%= 〉的區別,顯示資料與繫結資料
- DataGridView的資料繫結 與 指定列顯示 (程式碼完成)View
- Silverlight DataGrid 資料繫結滑鼠移入到內容項時顯示類似ToolTip提示文字
- DataGrid與SQL Server 2000資料繫結SQLServer
- 資料繫結(一)——《Windows Phone 7程式設計》Windows程式設計
- 資料繫結(二)——《Windows Phone 7程式設計》Windows程式設計
- vue select 繫結複雜資料和預設顯示Vue
- Windows Phone 8初學者開發—第10部分:資料繫結應用程式和透視應用程式專案模板簡介...Windows
- 最新資料顯示Windows Phone Store應用數量現已超過13萬Windows
- Windows Phone 資料繫結轉換器Windows
- windows phone 8 鎖屏介面 顯示應用程式的訊息提醒Windows
- MVC應用程式顯示Flash(swf)影片MVC
- three.js 顯示中文字型 和 tween應用JS
- Docker 基礎知識 - 使用繫結掛載(bind mounts)管理應用程式資料Docker
- 資料繫結
- DataGridView不顯示未繫結的列-AutoGenerateColumnsView
- Recorded Future:資料顯示微軟應用最遭賊惦記微軟
- 簡單資料繫結和複雜資料繫結
- opencv顯示中文OpenCV
- MySQL顯示中文MySql
- 微信小程式-檢視資料繫結微信小程式
- Mobilewalla:調查資料顯示移動應用程式總量將突破100萬
- 資料繫結原理
- 如何在virtual studio2005之c# 構建 Windows 應用程式中的窗體上顯示資料C#Windows
- Windows下的matplotlib畫圖中文顯示設定Windows
- 小程式與Vue對比·資料繫結Vue
- 【Qt】UI顯示中文QTUI
- SecureCRT裡顯示中文Securecrt
- matplotlib 顯示中文
- Java Swing應用程式GUI視窗居中顯示JavaGUI
- 將OleDbDataAdapter繫結到Winform下的DataGrid (轉)APTORM
- 應用寶:資料顯示大學生最愛用iPhone 其次是小米iPhone
- 用sh列表顯示oracle資料庫單條查詢結果(轉)Oracle資料庫
- StarDust:資料顯示三大平臺應用商店中有70萬個殭屍應用
- App Annie:最新資料顯示34%的iOS應用營收來自美國APPiOS營收
- 第二講、Vue3.x繫結資料、繫結html、繫結屬性、迴圈資料VueHTML