当前位置: 首页 > 图文教程 > 网络编程 > ASP.NET > VS的控件真是不好用,好不容易才搞定DataGrid

ASP.NET
合理的网盟广告策略:如何规划与投放网盟广告
GoDaddy Backorder域名抢注经验分享
Google Analytics获得GOOGLE真正的收录网站数据指标
Visual Studio 2008 Team Suite简体中文正式版- 激活方法

ASP.NET 中的 VS的控件真是不好用,好不容易才搞定DataGrid


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 29 ::
收藏到网摘: n/a


摘一段自定义DataGrid样式的贴上来共享:
private void RunProc_Load(object sender, System.EventArgs e) { procData=new SqlDataProvider(ConnectionString).GetProcColumn(ProcName); procData.Tables[0].Columns.Add("parmvalue"); procData.Tables[0].Columns.Add("Direction"); procData.Tables[0].Columns.Remove("isoutparam"); AddDataGrid(new DataView(procData.Tables[0])); }
private void AddDataGrid(DataView dv) { DataGridTextBoxColumn TxtCol =new DataGridTextBoxColumn(); dataGrid1.TableStyles.Clear(); dataGrid1.DataSource=dv; DataGridTableStyle ts= new DataGridTableStyle(); ts.MappingName ="SqlBuilder"; dv.AllowNew=false; dv.AllowDelete=false; dv.AllowEdit=false;
TxtCol =new DataGridTextBoxColumn(); TxtCol.MappingName ="name"; TxtCol.HeaderText ="参数名"; TxtCol.Width =100; TxtCol.ReadOnly=true; ts.GridColumnStyles.Add(TxtCol); TxtCol =new DataGridTextBoxColumn(); TxtCol.MappingName ="xtypename"; TxtCol.HeaderText ="参数类型"; TxtCol.Width =75; TxtCol.ReadOnly=true; ts.GridColumnStyles.Add(TxtCol);

TxtCol =new DataGridTextBoxColumn(); TxtCol.MappingName ="length"; TxtCol.HeaderText ="参数长度"; TxtCol.Width =75; TxtCol.ReadOnly=true; ts.GridColumnStyles.Add(TxtCol);
TxtCol =new DataGridTextBoxColumn(); TxtCol.MappingName ="Direction"; TxtCol.HeaderText ="传递方向"; TxtCol.Width =75; TxtCol.ReadOnly=true; ts.GridColumnStyles.Add(TxtCol);
dv.AllowEdit=true; TxtCol =new DataGridTextBoxColumn(); TxtCol.MappingName ="parmvalue"; TxtCol.HeaderText ="测试值"; TxtCol.Width =100; TxtCol.ReadOnly=false; ts.GridColumnStyles.Add(TxtCol); dataGrid1.TableStyles.Add(ts); }