控件中国网现已改版,您看到的是老版本网站的镜像,系统正在为您跳转到新网站首页,请稍候.......
中国最专业的商业控件资讯网产品咨询电话:023-67870900 023-67871946
产品咨询EMAIL:SALES@COMPONENTCN.COM

Infragistics WinGrid绑定动态数据

作者:ComponentCN 出处:ComponentCN 2014年05月20日 阅读:

Infragistics WinGrid绑定动态数据

Infragistics WinGrid是Infragistics Professional产品里Windows Form平台下的一个表格控件,该产品几乎可以实现数据表格展示的所有功能,数据绑定,增加,删除,更新,排序,分组等,并且产品提供了各种事例和帮助文档,帮助开发人员在最短时间内上手,这里我们简单介绍下该产品如果绑定使用代码产生的数据。

1. 首先我们创建一个新的桌面应用程序,直接从IDE的工具箱里拖拽UltraButton和UltraGrid控件到窗体上,然后在Button单击事件里添加如下代码:

private void ultraButton1_Click(object sender, EventArgs e)
{
        // Declare a DataTable to contain the program generated data
        DataTable dataTable = new DataTable("TableTest");

        // Create and add a CustomerID column
        DataColumn colWork = new DataColumn("CustomerID", System.Type.GetType("System.Int32"));
        dataTable.Columns.Add(colWork);

        // Add CustomerID column to key array and bind to DataTable
        DataColumn[] Keys = new DataColumn[1];
        Keys[0] = colWork;
        dataTable.PrimaryKey = Keys;

        // Create and add a CustomerName column
        colWork = new DataColumn("CustomerName", System.Type.GetType("System.String"));
        colWork.MaxLength = 50;
        dataTable.Columns.Add(colWork);

        // Create and add a LastOrderDate column
        colWork = new DataColumn("LastOrderDate", System.Type.GetType("System.DateTime"));
        dataTable.Columns.Add(colWork);

        // Add a row
        DataRow row = dataTable.NewRow();
        row["CustomerID"] = 1;
        row["CustomerName"] = "Johns Widgets";
        row["LastOrderDate"] = System.DateTime.Now;
        dataTable.Rows.Add(row);

        // Add another row
        row = dataTable.NewRow();
        row["CustomerID"] = 2;
        row["CustomerName"] = "Freds Thingamagigs";
        row["LastOrderDate"] = System.DateTime.Now.AddDays(-101);
        dataTable.Rows.Add(row);

        // Bind the table to the grid
        this.ultraGrid1.DataSource = dataTable;   
}

运行事例,该实例的运行效果图如下:


 

热推产品

  • ActiveReport... 强大的.NET报表设计、浏览、打印、转换控件,可以同时用于WindowsForms谀坔攀戀Forms平台下......
  • AnyChart AnyChart使你可以创建出绚丽的交互式的Flash和HTML5的图表和仪表控件。可以用于仪表盘的创......
首页 | 新闻中心 | 产品中心 | 技术文档 | 友情连接 | 关于磐岩 | 技术支持中心 | 联系我们 | 帮助中心 Copyright-2006 ComponentCN.com all rights reserved.重庆磐岩科技有限公司(控件中国网) 版权所有 电话:023 - 67870900 传真:023 - 67870270 产品咨询:sales@componentcn.com 渝ICP备12000264号 法律顾问:元炳律师事务所 重庆市江北区塔坪36号维丰创意绿苑A座28-5 邮编:400020
在线客服
在线客服系统
在线客服
在线客服系统