0

我是桌面应用程序开发的新手。

我有一个包含以下字段的数据集:

BillNo    |    Descirption    |  HSN Code    |   Qty    | Rate

我有一个数据网格视图文本框列类型的网格视图,其中指定了以下列。

Sr No.    | Descirption     | HSN Code    |   Qty    | Rate    | Amount

我想将“Description”、“HSN Code”、“Qty”和“Rate”绑定到数据集中的网格视图,并且我想生成“Sr No.”。&“数量”以编程方式显示网格视图。

我该怎么做呢?

请帮忙。

4

1 回答 1

1

在运行时创建新的 Datatable 对象并根据要求填充数据表并将其绑定到 datagrid 或 gridview

如下所示:

Private DataTable GetTable()
    {

    DataTable table = new DataTable();
    table.Columns.Add("Sr No.", typeof(int));
    table.Columns.Add("Descirption", typeof(string));
    table.Columns.Add("Code", typeof(string));
    .........
    ........


    retrive the data from datasourec in datatable dt

    //Here first loop through your orignal datatable or dataset

    forecch(DataRow drow in dt.Rows)
    {
        table.Rows.Add("your sr no", drow["Descirption" ],drow["Code"]);     
    }
     return table;
    }
于 2013-04-09T10:39:32.887 回答