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

ASP.NET
Web服务器控件:LinkButton控件
Web服务器控件:ListBox控件
Web服务器控件:ListItem控件
Web服务器控件:Literal控件
Web服务器控件:Panel控件
Web服务器控件:PlaceHolder控件
Web服务器控件:RadioButton控件
Web服务器控件:RadioButtonList控件
Web服务器控件:BulletedList控件
Web服务器控件:Style控件
Web服务器控件:Table控件
Web服务器控件:TableCell控件
Web服务器控件:TableRow控件
Web服务器控件:TextBox控件
Web服务器控件:XML控件
Validation服务器控件:CompareValidator控件
Validation服务器控件:CustomValidator控件
Validation服务器控件:RangeValidator控件
Validation服务器控件:RegularExpressionValidator控件
Validation服务器控件:RequiredFieldValidator控件

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


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 130 ::
收藏到网摘: 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); }