tangxu
2024-10-22 6a07c4c846ffbb1e93afdf0260e123e4c145f419
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
 
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.IO;
using System.Text;
using System.Linq;
 
namespace DPumpHydr.WinFrmUI.Impeller
{
    public partial class MainViewPage : TabbedMdiXtraForm
    {
        //基础信息
        private readonly string Group_Name_Base_Info = "BaseInfo";
        private readonly int Group_ID_Base_Info = -1;
        //盖板
        private readonly string Group_Name_Cover_Plate = "CoverPlate";
        private readonly int Group_ID_Cover_Plate = -2;
        //流线
        private readonly string Group_Name_Stream_Line = "StreamLine";
        private readonly int Group_ID_Stream_Line = -3;
        //叶片
        private readonly string Group_Name_Sheet_Design = "SheetDesign";
        private readonly int Group_ID_Sheet_Design = -4;
 
        private List<DPumpHydr.WinFrmUI.Impeller.TreeStepNode> _allStepNodes = null;
        //基本信息
        private long Step_ID_Hdr_Base_Info = 2;
        private long Step_ID_Geom_Base_Info = 3;
        //盖板
        private long Step_ID_Cover_Plate_Geom = 11;//尺寸
        private long Step_ID_Cover_Plate_Link = 12;//链接
        private long Step_ID_Cover_Plate_Sect = 13;//过流断面
        //
        private long Step_ID_SelectTypeAndStreamLineNum = 21;
        private long Step_ID_InletCurveInfo = 22;
 
        private long _currentStepID = 0;
 
        /// <summary>
        /// 下一步
        /// </summary>
        /// <returns></returns>
        public bool GoNextStep()
        {
            return GoNextStepCore();
        }
 
        /// <summary>
        /// 上一步
        /// </summary>
        /// <returns></returns>
        public bool GoPrevStep()
        {
            return GoPrevStepCore();
        }
 
        private bool GoNextStepCore()
        {
            var next_step = (from x in _allStepNodes
                             where x.ID > _currentStepID
                             orderby x.ID
                             select x).FirstOrDefault();
            if (next_step == null)
                return false;
 
            SetParasCtrl(next_step.ID);
           
            return true;
        }
 
        private bool GoPrevStepCore()
        {
            if (_currentStepID == Step_ID_Hdr_Base_Info)
                return false;
 
            var prev_step = (from x in _allStepNodes
                             where x.ID < _currentStepID
                             orderby x.ID
                             select x).LastOrDefault();
            if (prev_step == null)
                return false;
 
            SetParasCtrl(prev_step.ID);
        
            return true;
        }
 
        private void SetParasCtrl(long step_id)
        {   
            if (step_id == Step_ID_Hdr_Base_Info)
            {
                if (_ctrlHdrBaseInfo == null)
                    _ctrlHdrBaseInfo = new ctrlHdrBaseInfo();
 
            }
            if (step_id == Step_ID_Geom_Base_Info)
            {
                if (_ctrlGeomBaseInfo == null)
                    _ctrlGeomBaseInfo = new ctrlGeomBaseInfo();
 
            }
            if(step_id == Step_ID_Cover_Plate_Geom)
            {
                if (_ctrlCoverPlateGeom == null)
                    _ctrlCoverPlateGeom = new ctrlCoverPlateGeom();
 
 
               // CreateAxialProjectionDiagram();
            }
            if (step_id == Step_ID_Cover_Plate_Link)
            {
                if (_ctrlCoverPlateLink == null)
                    _ctrlCoverPlateLink = new ctrlCoverPlateLink();
 
 
                //CreatCrossSection();
            }
            if (step_id == Step_ID_Cover_Plate_Sect)
            {
                if (_ctrlCoverPlateSect == null)
                    _ctrlCoverPlateSect = new ctrlCoverPlateSect();
 
 
                //CreateMiddleFlowCurve();
            }
            if (step_id == Step_ID_SelectTypeAndStreamLineNum)
            {
                if (_ctrlSelectTypeAndStreamLineNum == null)
                    _ctrlSelectTypeAndStreamLineNum = new ctrlSelectTypeAndStreamLineNum();
 
 
                //CreateStreamlineDividingPoint();
 
                //CreateMappingGrid();
            }
            if (step_id == Step_ID_InletCurveInfo)
            {
                if (_ctrlInletCurveInfo == null)
                    _ctrlInletCurveInfo = new  ctrlInletCurveInfo();
 
            }
 
 
 
 
            
            this._currentStepID = step_id;
        }
     
        
        #region 初始化步骤列表
 
        /// <summary>
        /// 
        /// </summary>
        private void InitialStepNodes()
        {
            _allStepNodes = new List<DPumpHydr.WinFrmUI.Impeller.TreeStepNode>();
 
            #region 基础信息/几何参数
            var stepGroup_BaseInfo = new DPumpHydr.WinFrmUI.Impeller.TreeStepNode();
            stepGroup_BaseInfo.AllowSelect = false;
            stepGroup_BaseInfo.Group = Group_Name_Base_Info;
            stepGroup_BaseInfo.Caption = "基础信息";
            stepGroup_BaseInfo.Name = Group_Name_Base_Info;
            stepGroup_BaseInfo.ID = Group_ID_Base_Info;
            stepGroup_BaseInfo.ParentID = 0;
            _allStepNodes.Add(stepGroup_BaseInfo);
 
            var step欢迎使用 = new DPumpHydr.WinFrmUI.Impeller.TreeStepNode();
            step欢迎使用.AllowSelect = true;
            step欢迎使用.Group = Group_Name_Base_Info;
            step欢迎使用.Caption = "欢迎使用";
            step欢迎使用.Name = "StepHelp";
            step欢迎使用.ID = 1;
            step欢迎使用.ParentID = Group_ID_Base_Info;
            _allStepNodes.Add(step欢迎使用);
 
 
            var step基础信息 = new DPumpHydr.WinFrmUI.Impeller.TreeStepNode()
            {
                ProgressState = WinFrmUI.Impeller.TreeStepNode.eProgressState.未完成,
                DataState = WinFrmUI.Impeller.TreeStepNode.eDataState.未知
            };
            step基础信息.AllowSelect = true;
            step基础信息.Group = Group_Name_Base_Info;
            step基础信息.Caption = "第一步:基础信息";
            step基础信息.Name = "StepHydParas";
            step基础信息.ID = Step_ID_Hdr_Base_Info;
            step基础信息.ParentID = Group_ID_Base_Info;
            _allStepNodes.Add(step基础信息);
 
            var step几何参数 = new DPumpHydr.WinFrmUI.Impeller.TreeStepNode()
            {
                ProgressState = WinFrmUI.Impeller.TreeStepNode.eProgressState.未完成,
                DataState = WinFrmUI.Impeller.TreeStepNode.eDataState.未知
            };
            step几何参数.AllowSelect = true;
            step几何参数.Group = Group_Name_Base_Info;
            step几何参数.Caption = "第二步:几何参数";
            step几何参数.Name = "StepGeomParas";
            step几何参数.ID = Step_ID_Geom_Base_Info;
            step几何参数.ParentID = Group_ID_Base_Info;
            _allStepNodes.Add(step几何参数);
            #endregion
 
 
            #region 盖板参数
 
            var stepGroup_CoverPlate = new DPumpHydr.WinFrmUI.Impeller.TreeStepNode()
            {
                ProgressState = WinFrmUI.Impeller.TreeStepNode.eProgressState.未完成,
                DataState = WinFrmUI.Impeller.TreeStepNode.eDataState.未知
            };
            stepGroup_CoverPlate.AllowSelect = false;
            stepGroup_CoverPlate.Caption = "盖板参数";
            stepGroup_CoverPlate.Name = Group_Name_Cover_Plate;
            stepGroup_CoverPlate.ID = Group_ID_Cover_Plate;
            stepGroup_CoverPlate.ParentID = 0;
            _allStepNodes.Add(stepGroup_CoverPlate);
 
 
            var step盖板参数 = new DPumpHydr.WinFrmUI.Impeller.TreeStepNode()
            {
                ProgressState = WinFrmUI.Impeller.TreeStepNode.eProgressState.未完成,
                DataState = WinFrmUI.Impeller.TreeStepNode.eDataState.未知
            };
            step盖板参数.AllowSelect = true;
            step盖板参数.Caption = string.Format("{0}:{1}", GetTranslateString("第三步"), GetTranslateString("零件材料"));
            step盖板参数.Name = "StepCoverPlate";
            step盖板参数.ID = Step_ID_Cover_Plate_Geom;
            step盖板参数.Group = "盖板参数";
            step盖板参数.ParentID = Group_ID_Cover_Plate;
            _allStepNodes.Add(step盖板参数);
 
            var step盖板连接 = new DPumpHydr.WinFrmUI.Impeller.TreeStepNode()
            {
                ProgressState = WinFrmUI.Impeller.TreeStepNode.eProgressState.未完成,
                DataState = WinFrmUI.Impeller.TreeStepNode.eDataState.未知
            };
            step盖板连接.AllowSelect = true;
            step盖板连接.Caption = string.Format("{0}:{1}", GetTranslateString("第四步"), GetTranslateString("驱动参数"));
            step盖板连接.Name = "TreeStepNode6";
            step盖板连接.ID = Step_ID_Cover_Plate_Link;
            step盖板连接.Group = "盖板连接";
            step盖板连接.ParentID = Group_ID_Cover_Plate;
            _allStepNodes.Add(step盖板连接);
 
            var step过流断面 = new DPumpHydr.WinFrmUI.Impeller.TreeStepNode()
            {
                ProgressState = WinFrmUI.Impeller.TreeStepNode.eProgressState.未完成,
                DataState = WinFrmUI.Impeller.TreeStepNode.eDataState.未知
            };
            step过流断面.AllowSelect = true;
            step过流断面.Caption = string.Format("{0}:{1}", GetTranslateString("第五步"), GetTranslateString("部件参数(泵体)"));
            step过流断面.Name = "TreeStepNode7";
            step过流断面.ID = Step_ID_Cover_Plate_Sect;
            step过流断面.Group = "过流断面";
            step过流断面.ParentID = Group_ID_Cover_Plate;
            _allStepNodes.Add(step过流断面);
 
 
            #endregion
 
 
 
            #region 流线设计
 
            var stepGroup_StreamLine = new DPumpHydr.WinFrmUI.Impeller.TreeStepNode()
            {
                ProgressState = WinFrmUI.Impeller.TreeStepNode.eProgressState.未完成,
                DataState = WinFrmUI.Impeller.TreeStepNode.eDataState.未知
            };
            stepGroup_StreamLine.AllowSelect = false;
            stepGroup_StreamLine.Caption = "流线设计";
            stepGroup_StreamLine.Name = Group_Name_Stream_Line;
            stepGroup_StreamLine.ID = Group_ID_Stream_Line;
            stepGroup_StreamLine.ParentID = 0;
            _allStepNodes.Add(stepGroup_StreamLine);
 
 
            var step叶片类型和流线数 = new DPumpHydr.WinFrmUI.Impeller.TreeStepNode()
            {
                ProgressState = WinFrmUI.Impeller.TreeStepNode.eProgressState.未完成,
                DataState = WinFrmUI.Impeller.TreeStepNode.eDataState.未知
            };
            step叶片类型和流线数.AllowSelect = true;
            step叶片类型和流线数.Caption = string.Format("{0}:{1}", GetTranslateString("第六步"), GetTranslateString("叶片类型和流线数"));
            step叶片类型和流线数.Name = "TreeStepNodeSelectTypeAndStreamLineNum";
            step叶片类型和流线数.ID = Step_ID_SelectTypeAndStreamLineNum;
            step叶片类型和流线数.Group = Group_Name_Stream_Line;
            step叶片类型和流线数.ParentID = Group_ID_Stream_Line;
            _allStepNodes.Add(step叶片类型和流线数);
 
 
 
            var step进口边设计 = new DPumpHydr.WinFrmUI.Impeller.TreeStepNode()
            {
                ProgressState = WinFrmUI.Impeller.TreeStepNode.eProgressState.未完成,
                DataState = WinFrmUI.Impeller.TreeStepNode.eDataState.未知
            };
            step进口边设计.AllowSelect = true;
            step进口边设计.Caption = "第7步:进口边设计";
            step进口边设计.Name = "TreeStepNodeInletCurveInfo";
            step进口边设计.ID = Step_ID_InletCurveInfo;
            step进口边设计.Group = Group_Name_Stream_Line;
            step进口边设计.ParentID = Group_ID_Stream_Line;
            _allStepNodes.Add(step进口边设计);
 
            #endregion
 
 
 
            #region 叶片
 
            var stepGroup_叶片设计 = new DPumpHydr.WinFrmUI.Impeller.TreeStepNode()
            {
                ProgressState = WinFrmUI.Impeller.TreeStepNode.eProgressState.未完成,
                DataState = WinFrmUI.Impeller.TreeStepNode.eDataState.未知
            };
            stepGroup_叶片设计.AllowSelect = false;
            stepGroup_叶片设计.Caption = "叶片设计";
            stepGroup_叶片设计.Name = Group_Name_Sheet_Design;
            stepGroup_叶片设计.ID = Group_ID_Sheet_Design;
            stepGroup_叶片设计.ParentID = 0;
            _allStepNodes.Add(stepGroup_叶片设计);
 
 
            var step工作面 = new DPumpHydr.WinFrmUI.Impeller.TreeStepNode()
            {
                ProgressState = WinFrmUI.Impeller.TreeStepNode.eProgressState.未完成,
                DataState = WinFrmUI.Impeller.TreeStepNode.eDataState.未知
            };
            step工作面.AllowSelect = true;
            step工作面.Caption = "第九步:工作面";
            step工作面.Name = "TreeStepNode31";
            step工作面.ID = 31;
            step工作面.Group = Group_Name_Sheet_Design;
            step工作面.ParentID = Group_ID_Sheet_Design;
            _allStepNodes.Add(step工作面);
 
 
 
            var step背面 = new DPumpHydr.WinFrmUI.Impeller.TreeStepNode()
            {
                ProgressState = WinFrmUI.Impeller.TreeStepNode.eProgressState.未完成,
                DataState = WinFrmUI.Impeller.TreeStepNode.eDataState.未知
            };
            step背面.AllowSelect = true;
            step背面.Caption = "第九步:背面";
            step背面.Name = "TreeStepNode32";
            step背面.ID = 32;
            step背面.Group = Group_Name_Sheet_Design;
            step背面.ParentID = Group_ID_Sheet_Design;
            _allStepNodes.Add(step背面);
 
            #endregion
 
 
           // this.stepTreeListCtrl.SetStepSource(_allStepNodes, 1);
        }
 
        #endregion
 
    }
}