lixiaojun
2024-12-10 5587341ac6e50a040972d33d83de632e7d0c87af
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace HStation.WinFrmUI
{
    public partial class test : DocumentPage
    {
        public test()
        {
            InitializeComponent();
        }
 
        private void simpleButton1_Click(object sender, EventArgs e)
        {
            SimulationWordReport word = new SimulationWordReport();
            word.Create("word.doc");
        }
    }
}