lixiaojun
2024-12-09 725f20b576bdd40d57d9a1e806ce3f6f39181a84
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");
        }
    }
}