- 积分
- 33
- 在线时间
- 53 小时
- 主题
- 28
- 注册时间
- 2013-8-31
- 帖子
- 132
- 最后登录
- 2019-10-21
- 帖子
- 132
- 软币
- 3320
- 在线时间
- 53 小时
- 注册时间
- 2013-8-31
|
/// <summary>
/// 报表设计器
/// </summary>
private void BtnReportDesigner_Click(object sender, EventArgs e)
{
DevExpress.XtraReports.UI.XtraReport report = new DevExpress.XtraReports.UI.XtraReport();
report.LoadLayout(Application.StartupPath + @"\BillReport.repx");
//BillReport report = new BillReport();//调用原生的报表
XRDesignFormEx designForm = new XRDesignFormEx();
designForm.OpenReport(report);
designForm.ShowDialog();
designForm.Dispose();
} |
评分
-
查看全部评分
|