tangxu
2024-12-29 f7ec23b2fe6e8e48bbb32b8c9321b64529622406
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using DPumpHydr.WinFrmUI.RLT.Docking.Crown;
 
 
namespace DPumpHydr.WinFrmUI.Volute 
{
    public partial class OccDesignCtrlDockPanel : CrownDocument
    {
        OccDesignCtrl _occCtrl;
        public OccDesignCtrlDockPanel()
        {
            this.Icon = DPumpHydr.WinFrmUI.Volute.Properties.Resources.round_rotate_16;
            this.IsShowCloseIcon = false ;
            _occCtrl = new OccDesignCtrl();
            _occCtrl.Name = "OccDesignCtrl";
            _occCtrl.Dock = DockStyle.Fill;
            this.Controls.Add(_occCtrl); 
        }
        public void SetViewDirect(DPumpHydr.Model.eViewDirect vd)
        {
            _occCtrl.SetViewDirect(vd);
        }
 
        private void InitializeComponent()
        {
 
        }
 
        public void Initial(bool is3D)
        {
            _occCtrl.Initial(is3D);
        }
 
        public void RefreshAllSectShape18(ViewModel.SectionBundleInfo bundle)
        {
            _occCtrl.RefreshAllSectShape18(bundle);
        }
        public void RefreshSingleSectShape18(ViewModel.SectionShapePara theSectionParam)
        {
            _occCtrl.RefreshSingleSectShape18(theSectionParam);
        }
        public void CreateOutflowBody( )
        {
            _occCtrl.CreateOutflowBody( );
        }
        
    }
}