在Telerik报告表中将DataTable用作数据源时清空记录

时间:2017-04-22 12:02:51

标签: c# telerik

这是我的源代码:

public ReptDoc() {
    InitializeComponent();
    DataTable table = GetTable();
    table1.DataSource = table;
}

private DataTable GetTable() {
    // Here we create a DataTable with four columns.
    DataTable table = new DataTable();
    table.Columns.Add("السعر", typeof(string));
    table.Columns.Add("العدد", typeof(string));
    table.Columns.Add("اسم المادة", typeof(string));
    table.Columns.Add("المبلغ الكلي", typeof(string));

    // Here we add five DataRows.
    table.Rows.Add("1000", "22", "تبريد", "200000");
    table.Rows.Add("1000", "22", "تبريد", "200000");
    return table;
}

我使用table1数据源将DT绑定到table1。在输出报告中,我得到两个空行?

0 个答案:

没有答案