yangyin
2025-02-21 e15fa3fb9193f6635b7f4ddec526c061a8ee03ed
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.IO;
using System.Text;
using System.Linq;
using HydrEngineCSharp;
 
namespace DPumpHydr.WinFrmUI.Volute
{
    public partial class MainViewPage
    {
        /// <summary>
        /// 
        /// </summary>
        /// <returns></returns>
        private bool SaveParaStep4()
        {
 
            return true;
        }
        /// <summary>
        /// 
        /// </summary>
        /// <param name="last_step_id"></param>
        private void EnterStep4(long last_step_id)
        {
            if (_sectionBundleInfo == null)
                return;
 
 
            CreateThicknessStepCtrl();
 
      
 
            InitilThicknessStepCtrl(last_step_id);
 
 
            DockStepParaCtrl(_ctrlThicknessParas);
 
 
        }
        
        //
        private void CreateThicknessStepCtrl()
        {
            if (_ctrlThicknessParas == null)
            {
                _ctrlThicknessParas = new ctrlThicknessParas();
                _ctrlThicknessParas.Name = "ctrlThicknessParas";
                _ctrlThicknessParas.OnRefreshShape += (houdu) =>
                {
                    this._bodyThickness = houdu;
                    this._occDesign3dCtrl.BuildThicknessBody(houdu);
                };
                this._bodyThickness = _ctrlThicknessParas.InitialParas(_hdrBaseInfo, _geomBaseInfo, _outflowParas);
                this._occDesign3dCtrl.BuildThicknessBody(_bodyThickness);
            }
        }
 
        private void InitilThicknessStepCtrl(long last_step_id)
        {
            Rbtn数据导出STP.Visible = true;
            Rbtn数据导出IGS.Visible = true;
 
            this._occDesign2dCtrl.SetAllSectionCurveVisible(false);
            this._occDesign3dCtrl.SetAllSectionCurveVisible(false);
 
            _ctrlThicknessParas.ShowPage();
 
            this._occDesign3dCtrl.setWaterBodyOpacity(
                DPumpHydr.WinFrmUI.Volute.GlobalParas.WaterBodyColor.R,
                DPumpHydr.WinFrmUI.Volute.GlobalParas.WaterBodyColor.G,
                DPumpHydr.WinFrmUI.Volute.GlobalParas.WaterBodyColor.B, 60);
            this._occDesign3dCtrl.SetThicknessBodyVisible(true);
        }
        
    }
}