23 lines
518 B
C#
23 lines
518 B
C#
using System;
|
|
using System.Drawing;
|
|
using System.Collections;
|
|
using System.ComponentModel;
|
|
using DevExpress.XtraReports.UI;
|
|
using System.Data;
|
|
|
|
namespace Barcode
|
|
{
|
|
public partial class 电子面单001 : DevExpress.XtraReports.UI.XtraReport
|
|
{
|
|
public 电子面单001()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
public void SetBindData(DataSet table)
|
|
{
|
|
this.DataSource = table.Tables[0];
|
|
DetailReport.DataSource = table.Tables[1];
|
|
}
|
|
}
|
|
}
|