tangxu
2024-11-03 4ee432aa0ec5ec8058d720b49ae7f46e5ad1c49c
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
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.IO;
using System.Text;
using System.Linq;
 
namespace DPumpHydr.WinFrmUI.Volute
{
    public partial class MainViewPage
    {
        OccDesignCtrl _occDesignCtrl;
 
        private void InitialOcccCtrl()
        {
            _occDesignCtrl = new OccDesignCtrl();
            _occDesignCtrl.Size = new System.Drawing.Size(1000, 1000);
            _occDesignCtrl.Name = "OccDesignCtrl";
            _occDesignCtrl.Dock = DockStyle.Fill;
            this.panelParas.Controls.Add( _occDesignCtrl );
        }
 
 
 
    }
}