lixiaojun
2025-02-17 92437d69a32c79cebf0708c147c0f3c0a24f2e23
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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)
        {
 
        }
 
 
 
    }
}