绑定数据集的特定列数到Gridview

本文关键字:Gridview 数据集 绑定 | 更新日期: 2023-09-27 18:08:07

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

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

BillNo    |    Descirption    |  HSN Code    |   Qty    | Rate

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

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

我想绑定"Description","HSN Code"," quantity " &"Rate"到数据集的网格视图我想生成"Sr No ",网格视图的可编程"Amount"

我该怎么做?

请帮。

绑定数据集的特定列数到Gridview

在运行时创建新的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;
    }