using DevExpress.XtraReports.UI;
|
using System;
|
using System.Collections;
|
using System.ComponentModel;
|
using System.Drawing;
|
|
namespace HStation.WinFrmUI
|
{
|
public partial class SimulationCommonReport : DevExpress.XtraReports.UI.XtraReport
|
{
|
public SimulationCommonReport()
|
{
|
InitializeComponent();
|
}
|
|
/// <summary>
|
/// 绑定数据
|
/// </summary>
|
public void SetBindingData(SimulationPrintViewModel vm)
|
{
|
|
}
|
|
|
|
}
|
}
|