这是我的源代码:
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。在输出报告中,我得到两个空行?