yangyin
2025-03-25 db33bc6d9a30db6be4b40e45097c9a87a67cc845
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
80
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;
 
 
      
            InitilThicknessStepCtrl(last_step_id);
 
 
            DockStepParaCtrl(_ctrlThicknessParas);
        }
        
        // 
        private void InitilThicknessStepCtrl(long last_step_id)
        {
            if (_ctrlThicknessParas == null)
            {
                _ctrlThicknessParas = new ctrlThicknessParas();
                _ctrlThicknessParas.Name = "ctrlThicknessParas";
                _ctrlThicknessParas.OnRefreshShape += (houdu) =>
                {
                    this._bodyThickness = houdu;
                    this._occDesign3dCtrl.BuildThicknessBody(houdu);
                };
                _ctrlThicknessParas.OnPrevStep += () =>
                {
                    this._occDesign3dCtrl.SetThicknessBodyVisible(false);
                    ChangeStep(this._stepTreeDockPanel.Step_ID_Thickness, this._stepTreeDockPanel.Step_ID_Outflow_Paras);
                };
                this._bodyThickness = _ctrlThicknessParas.InitialParas(_hdrBaseInfo, _geomBaseInfo, _outflowParas);
                this._occDesign3dCtrl.BuildThicknessBody(_bodyThickness);
            }
            else if (_bodyThickness > 0)
            {
                this._occDesign3dCtrl.BuildThicknessBody(_bodyThickness);
            }
 
            //Rbtn数据导出STP.Visible = true;
            //Rbtn数据导出IGS.Visible = true;
 
            this._occDesign2dCtrl.SetAllSectionCurveVisible(false);
            this._occDesign3dCtrl.SetAllSectionCurveVisible(false);
 
            this._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);
        }
        
    }
}