Shuxia Ning
2024-12-09 f97b3ccbfd63b62ec875223fcc417633f6ce2989
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");
        }
    }
}