duheng
2025-03-28 b825d70578b0ddf6d479569887c194f919795dad
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
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
using DevExpress.Utils;
using DevExpress.XtraGrid.Views.Grid;
using System;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
 
namespace PBS.WinFrmUI.Hydro
{
    partial class SimulationSchedulePage
    {
        /// <summary> 
        /// Required designer variable.
        /// </summary>
        private IContainer components = null;
 
        /// <summary> 
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        //protected override void Dispose(bool disposing)
        //{
        //    if (disposing && (components != null))
        //    {
        //        components.Dispose();
        //    }
        //    base.Dispose(disposing);
        //}
 
        #region Component Designer generated code
 
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            ComponentResourceManager resources = new ComponentResourceManager(typeof(SimulationSchedulePage));
            DevExpress.XtraCharts.XYDiagram xyDiagram2 = new DevExpress.XtraCharts.XYDiagram();
            DevExpress.XtraCharts.ConstantLine constantLine3 = new DevExpress.XtraCharts.ConstantLine();
            DevExpress.XtraCharts.ConstantLine constantLine4 = new DevExpress.XtraCharts.ConstantLine();
            DevExpress.XtraCharts.LayoutDefinition layoutDefinition3 = new DevExpress.XtraCharts.LayoutDefinition();
            DevExpress.XtraCharts.LayoutDefinition layoutDefinition4 = new DevExpress.XtraCharts.LayoutDefinition();
            DevExpress.XtraCharts.XYDiagramPane xyDiagramPane4 = new DevExpress.XtraCharts.XYDiagramPane();
            DevExpress.XtraCharts.XYDiagramPane xyDiagramPane5 = new DevExpress.XtraCharts.XYDiagramPane();
            DevExpress.XtraCharts.XYDiagramPane xyDiagramPane6 = new DevExpress.XtraCharts.XYDiagramPane();
            DevExpress.XtraCharts.SecondaryAxisY secondaryAxisy5 = new DevExpress.XtraCharts.SecondaryAxisY();
            DevExpress.XtraCharts.SecondaryAxisY secondaryAxisy6 = new DevExpress.XtraCharts.SecondaryAxisY();
            DevExpress.XtraCharts.SecondaryAxisY secondaryAxisy7 = new DevExpress.XtraCharts.SecondaryAxisY();
            DevExpress.XtraCharts.SecondaryAxisY secondaryAxisy8 = new DevExpress.XtraCharts.SecondaryAxisY();
            DevExpress.XtraCharts.Series series10 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.LineSeriesView lineSeriesView7 = new DevExpress.XtraCharts.LineSeriesView();
            DevExpress.XtraCharts.Series series11 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.RangeAreaSeriesView rangeAreaSeriesView3 = new DevExpress.XtraCharts.RangeAreaSeriesView();
            DevExpress.XtraCharts.Series series12 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.RangeAreaSeriesView rangeAreaSeriesView4 = new DevExpress.XtraCharts.RangeAreaSeriesView();
            DevExpress.XtraCharts.Series series13 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.LineSeriesView lineSeriesView8 = new DevExpress.XtraCharts.LineSeriesView();
            DevExpress.XtraCharts.Series series14 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.LineSeriesView lineSeriesView9 = new DevExpress.XtraCharts.LineSeriesView();
            DevExpress.XtraCharts.Series series15 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.LineSeriesView lineSeriesView10 = new DevExpress.XtraCharts.LineSeriesView();
            DevExpress.XtraCharts.Series series16 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.LineSeriesView lineSeriesView11 = new DevExpress.XtraCharts.LineSeriesView();
            DevExpress.XtraCharts.Series series17 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.LineSeriesView lineSeriesView12 = new DevExpress.XtraCharts.LineSeriesView();
            DevExpress.XtraCharts.Series series18 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.PointSeriesView pointSeriesView2 = new DevExpress.XtraCharts.PointSeriesView();
            sidePanelInfo = new SidePanel();
            layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
            txtEndP = new TextEdit();
            gridControl1 = new DevExpress.XtraGrid.GridControl();
            gridView1 = new GridView();
            colID = new DevExpress.XtraGrid.Columns.GridColumn();
            colHZ = new DevExpress.XtraGrid.Columns.GridColumn();
            colEff = new DevExpress.XtraGrid.Columns.GridColumn();
            colPower = new DevExpress.XtraGrid.Columns.GridColumn();
            colFlow = new DevExpress.XtraGrid.Columns.GridColumn();
            colHead = new DevExpress.XtraGrid.Columns.GridColumn();
            txtTotalEnergyVP = new TextEdit();
            txtEnergyEfficient = new TextEdit();
            txtEnergyEfficiencyRatio = new TextEdit();
            txtPower = new TextEdit();
            txtPumpP = new TextEdit();
            txtTerminalP = new TextEdit();
            txtConstantP = new TextEdit();
            txtTime = new TextEdit();
            txtTotalEnergyCP = new TextEdit();
            ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
            barBtnWaterImport = new DevExpress.XtraBars.BarButtonItem();
            barBtnCalc = new DevExpress.XtraBars.BarButtonItem();
            barBtnPause = new DevExpress.XtraBars.BarButtonItem();
            barBtnContinue = new DevExpress.XtraBars.BarButtonItem();
            barBtnOver = new DevExpress.XtraBars.BarButtonItem();
            ribbonPage = new DevExpress.XtraBars.Ribbon.RibbonPage();
            PageGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            Root = new DevExpress.XtraLayout.LayoutControlGroup();
            layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
            layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
            layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
            layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
            layoutControlItem12 = new DevExpress.XtraLayout.LayoutControlItem();
            layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
            layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
            layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
            layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
            layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
            layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup();
            layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
            layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem();
            layoutControlGroup5 = new DevExpress.XtraLayout.LayoutControlGroup();
            layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
            layoutControlGroup4 = new DevExpress.XtraLayout.LayoutControlGroup();
            layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem();
            chartControl = new DevExpress.XtraCharts.ChartControl();
            sidePanelChart = new SidePanel();
            sidePanelInfo.SuspendLayout();
            ((ISupportInitialize)layoutControl1).BeginInit();
            layoutControl1.SuspendLayout();
            ((ISupportInitialize)txtEndP.Properties).BeginInit();
            ((ISupportInitialize)gridControl1).BeginInit();
            ((ISupportInitialize)gridView1).BeginInit();
            ((ISupportInitialize)txtTotalEnergyVP.Properties).BeginInit();
            ((ISupportInitialize)txtEnergyEfficient.Properties).BeginInit();
            ((ISupportInitialize)txtEnergyEfficiencyRatio.Properties).BeginInit();
            ((ISupportInitialize)txtPower.Properties).BeginInit();
            ((ISupportInitialize)txtPumpP.Properties).BeginInit();
            ((ISupportInitialize)txtTerminalP.Properties).BeginInit();
            ((ISupportInitialize)txtConstantP.Properties).BeginInit();
            ((ISupportInitialize)txtTime.Properties).BeginInit();
            ((ISupportInitialize)txtTotalEnergyCP.Properties).BeginInit();
            ((ISupportInitialize)ribbonControl1).BeginInit();
            ((ISupportInitialize)Root).BeginInit();
            ((ISupportInitialize)layoutControlGroup1).BeginInit();
            ((ISupportInitialize)layoutControlItem2).BeginInit();
            ((ISupportInitialize)layoutControlItem3).BeginInit();
            ((ISupportInitialize)layoutControlItem1).BeginInit();
            ((ISupportInitialize)layoutControlItem12).BeginInit();
            ((ISupportInitialize)layoutControlGroup2).BeginInit();
            ((ISupportInitialize)layoutControlItem9).BeginInit();
            ((ISupportInitialize)layoutControlItem6).BeginInit();
            ((ISupportInitialize)layoutControlItem4).BeginInit();
            ((ISupportInitialize)layoutControlItem7).BeginInit();
            ((ISupportInitialize)layoutControlGroup3).BeginInit();
            ((ISupportInitialize)layoutControlItem10).BeginInit();
            ((ISupportInitialize)layoutControlItem11).BeginInit();
            ((ISupportInitialize)layoutControlGroup5).BeginInit();
            ((ISupportInitialize)layoutControlItem5).BeginInit();
            ((ISupportInitialize)layoutControlGroup4).BeginInit();
            ((ISupportInitialize)layoutControlItem13).BeginInit();
            ((ISupportInitialize)chartControl).BeginInit();
            ((ISupportInitialize)xyDiagram2).BeginInit();
            ((ISupportInitialize)constantLine3).BeginInit();
            ((ISupportInitialize)constantLine4).BeginInit();
            ((ISupportInitialize)xyDiagramPane4).BeginInit();
            ((ISupportInitialize)xyDiagramPane5).BeginInit();
            ((ISupportInitialize)xyDiagramPane6).BeginInit();
            ((ISupportInitialize)secondaryAxisy5).BeginInit();
            ((ISupportInitialize)secondaryAxisy6).BeginInit();
            ((ISupportInitialize)secondaryAxisy7).BeginInit();
            ((ISupportInitialize)secondaryAxisy8).BeginInit();
            ((ISupportInitialize)series10).BeginInit();
            ((ISupportInitialize)lineSeriesView7).BeginInit();
            ((ISupportInitialize)series11).BeginInit();
            ((ISupportInitialize)rangeAreaSeriesView3).BeginInit();
            ((ISupportInitialize)series12).BeginInit();
            ((ISupportInitialize)rangeAreaSeriesView4).BeginInit();
            ((ISupportInitialize)series13).BeginInit();
            ((ISupportInitialize)lineSeriesView8).BeginInit();
            ((ISupportInitialize)series14).BeginInit();
            ((ISupportInitialize)lineSeriesView9).BeginInit();
            ((ISupportInitialize)series15).BeginInit();
            ((ISupportInitialize)lineSeriesView10).BeginInit();
            ((ISupportInitialize)series16).BeginInit();
            ((ISupportInitialize)lineSeriesView11).BeginInit();
            ((ISupportInitialize)series17).BeginInit();
            ((ISupportInitialize)lineSeriesView12).BeginInit();
            ((ISupportInitialize)series18).BeginInit();
            ((ISupportInitialize)pointSeriesView2).BeginInit();
            sidePanelChart.SuspendLayout();
            SuspendLayout();
            // 
            // sidePanelInfo
            // 
            sidePanelInfo.Controls.Add(layoutControl1);
            sidePanelInfo.Dock = DockStyle.Right;
            sidePanelInfo.Location = new Point(485, 64);
            sidePanelInfo.Margin = new Padding(3, 4, 3, 4);
            sidePanelInfo.Name = "sidePanelInfo";
            sidePanelInfo.Size = new Size(450, 812);
            sidePanelInfo.TabIndex = 0;
            sidePanelInfo.Text = "sidePanel1";
            // 
            // layoutControl1
            // 
            layoutControl1.Controls.Add(txtEndP);
            layoutControl1.Controls.Add(gridControl1);
            layoutControl1.Controls.Add(txtTotalEnergyVP);
            layoutControl1.Controls.Add(txtEnergyEfficient);
            layoutControl1.Controls.Add(txtEnergyEfficiencyRatio);
            layoutControl1.Controls.Add(txtPower);
            layoutControl1.Controls.Add(txtPumpP);
            layoutControl1.Controls.Add(txtTerminalP);
            layoutControl1.Controls.Add(txtConstantP);
            layoutControl1.Controls.Add(txtTime);
            layoutControl1.Controls.Add(txtTotalEnergyCP);
            layoutControl1.Dock = DockStyle.Fill;
            layoutControl1.Location = new Point(1, 0);
            layoutControl1.Margin = new Padding(3, 4, 3, 4);
            layoutControl1.Name = "layoutControl1";
            layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new Rectangle(646, 739, 650, 400);
            layoutControl1.Root = Root;
            layoutControl1.Size = new Size(449, 812);
            layoutControl1.TabIndex = 0;
            layoutControl1.Text = "layoutControl1";
            // 
            // txtEndP
            // 
            txtEndP.EditValue = "10";
            txtEndP.Location = new Point(328, 32);
            txtEndP.Margin = new Padding(3, 4, 3, 4);
            txtEndP.Name = "txtEndP";
            txtEndP.Size = new Size(117, 24);
            txtEndP.StyleController = layoutControl1;
            txtEndP.TabIndex = 14;
            // 
            // gridControl1
            // 
            gridControl1.EmbeddedNavigator.Margin = new Padding(3, 5, 3, 5);
            gridControl1.Location = new Point(0, 266);
            gridControl1.MainView = gridView1;
            gridControl1.Margin = new Padding(3, 4, 3, 4);
            gridControl1.Name = "gridControl1";
            gridControl1.Size = new Size(449, 515);
            gridControl1.TabIndex = 16;
            gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { gridView1 });
            // 
            // gridView1
            // 
            gridView1.BorderStyle = BorderStyles.NoBorder;
            gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { colID, colHZ, colEff, colPower, colFlow, colHead });
            gridView1.DetailHeight = 450;
            gridView1.GridControl = gridControl1;
            gridView1.Name = "gridView1";
            gridView1.OptionsEditForm.PopupEditFormWidth = 914;
            gridView1.OptionsView.ShowGroupPanel = false;
            // 
            // colID
            // 
            colID.Caption = "泵";
            colID.FieldName = "Name";
            colID.MinWidth = 23;
            colID.Name = "colID";
            colID.Visible = true;
            colID.VisibleIndex = 0;
            colID.Width = 86;
            // 
            // colHZ
            // 
            colHZ.Caption = "频率(hz)";
            colHZ.FieldName = "HZ";
            colHZ.MinWidth = 23;
            colHZ.Name = "colHZ";
            colHZ.Visible = true;
            colHZ.VisibleIndex = 1;
            colHZ.Width = 86;
            // 
            // colEff
            // 
            colEff.Caption = "效率(%)";
            colEff.FieldName = "Eff";
            colEff.MinWidth = 23;
            colEff.Name = "colEff";
            colEff.Visible = true;
            colEff.VisibleIndex = 5;
            colEff.Width = 86;
            // 
            // colPower
            // 
            colPower.Caption = "功率(kW)";
            colPower.FieldName = "Power";
            colPower.MinWidth = 23;
            colPower.Name = "colPower";
            colPower.Visible = true;
            colPower.VisibleIndex = 4;
            colPower.Width = 86;
            // 
            // colFlow
            // 
            colFlow.Caption = "流量(m³/h)";
            colFlow.FieldName = "Flow";
            colFlow.MinWidth = 23;
            colFlow.Name = "colFlow";
            colFlow.Visible = true;
            colFlow.VisibleIndex = 2;
            colFlow.Width = 86;
            // 
            // colHead
            // 
            colHead.Caption = "扬程(m)";
            colHead.FieldName = "Head";
            colHead.MinWidth = 24;
            colHead.Name = "colHead";
            colHead.Visible = true;
            colHead.VisibleIndex = 3;
            colHead.Width = 89;
            // 
            // txtTotalEnergyVP
            // 
            txtTotalEnergyVP.EditValue = "";
            txtTotalEnergyVP.Location = new Point(328, 93);
            txtTotalEnergyVP.Margin = new Padding(3, 4, 3, 4);
            txtTotalEnergyVP.Name = "txtTotalEnergyVP";
            txtTotalEnergyVP.Properties.ReadOnly = true;
            txtTotalEnergyVP.Size = new Size(117, 24);
            txtTotalEnergyVP.StyleController = layoutControl1;
            txtTotalEnergyVP.TabIndex = 4;
            // 
            // txtEnergyEfficient
            // 
            txtEnergyEfficient.EditValue = "";
            txtEnergyEfficient.Location = new Point(106, 121);
            txtEnergyEfficient.Margin = new Padding(3, 4, 3, 4);
            txtEnergyEfficient.Name = "txtEnergyEfficient";
            txtEnergyEfficient.Properties.ReadOnly = true;
            txtEnergyEfficient.Size = new Size(116, 24);
            txtEnergyEfficient.StyleController = layoutControl1;
            txtEnergyEfficient.TabIndex = 5;
            // 
            // txtEnergyEfficiencyRatio
            // 
            txtEnergyEfficiencyRatio.EditValue = "";
            txtEnergyEfficiencyRatio.Location = new Point(328, 121);
            txtEnergyEfficiencyRatio.Margin = new Padding(3, 4, 3, 4);
            txtEnergyEfficiencyRatio.Name = "txtEnergyEfficiencyRatio";
            txtEnergyEfficiencyRatio.Properties.ReadOnly = true;
            txtEnergyEfficiencyRatio.Size = new Size(117, 24);
            txtEnergyEfficiencyRatio.StyleController = layoutControl1;
            txtEnergyEfficiencyRatio.TabIndex = 6;
            // 
            // txtPower
            // 
            txtPower.Location = new Point(328, 182);
            txtPower.Margin = new Padding(3, 4, 3, 4);
            txtPower.Name = "txtPower";
            txtPower.Properties.ReadOnly = true;
            txtPower.Size = new Size(117, 24);
            txtPower.StyleController = layoutControl1;
            txtPower.TabIndex = 7;
            // 
            // txtPumpP
            // 
            txtPumpP.Location = new Point(106, 210);
            txtPumpP.Margin = new Padding(3, 4, 3, 4);
            txtPumpP.Name = "txtPumpP";
            txtPumpP.Properties.ReadOnly = true;
            txtPumpP.Size = new Size(116, 24);
            txtPumpP.StyleController = layoutControl1;
            txtPumpP.TabIndex = 9;
            // 
            // txtTerminalP
            // 
            txtTerminalP.Location = new Point(328, 210);
            txtTerminalP.Margin = new Padding(3, 4, 3, 4);
            txtTerminalP.Name = "txtTerminalP";
            txtTerminalP.Properties.ReadOnly = true;
            txtTerminalP.Size = new Size(117, 24);
            txtTerminalP.StyleController = layoutControl1;
            txtTerminalP.TabIndex = 10;
            // 
            // txtConstantP
            // 
            txtConstantP.EditValue = "60";
            txtConstantP.Location = new Point(106, 32);
            txtConstantP.Margin = new Padding(3, 4, 3, 4);
            txtConstantP.Name = "txtConstantP";
            txtConstantP.Properties.MaskSettings.Set("MaskManagerType", typeof(DevExpress.Data.Mask.NumericMaskManager));
            txtConstantP.Size = new Size(116, 24);
            txtConstantP.StyleController = layoutControl1;
            txtConstantP.TabIndex = 13;
            txtConstantP.EditValueChanged += txtConstantP_EditValueChanged;
            // 
            // txtTime
            // 
            txtTime.Location = new Point(106, 182);
            txtTime.Margin = new Padding(3, 4, 3, 4);
            txtTime.Name = "txtTime";
            txtTime.Properties.DisplayFormat.FormatString = "d";
            txtTime.Properties.DisplayFormat.FormatType = FormatType.DateTime;
            txtTime.Properties.EditFormat.FormatString = "d";
            txtTime.Properties.EditFormat.FormatType = FormatType.DateTime;
            txtTime.Properties.ReadOnly = true;
            txtTime.Size = new Size(116, 24);
            txtTime.StyleController = layoutControl1;
            txtTime.TabIndex = 12;
            // 
            // txtTotalEnergyCP
            // 
            txtTotalEnergyCP.Location = new Point(106, 93);
            txtTotalEnergyCP.Margin = new Padding(2, 3, 2, 3);
            txtTotalEnergyCP.MenuManager = ribbonControl1;
            txtTotalEnergyCP.Name = "txtTotalEnergyCP";
            txtTotalEnergyCP.Properties.ReadOnly = true;
            txtTotalEnergyCP.Size = new Size(116, 24);
            txtTotalEnergyCP.StyleController = layoutControl1;
            txtTotalEnergyCP.TabIndex = 19;
            // 
            // ribbonControl1
            // 
            ribbonControl1.DrawGroupsBorderMode = DefaultBoolean.False;
            ribbonControl1.EmptyAreaImageOptions.ImagePadding = new Padding(34, 39, 34, 39);
            ribbonControl1.ExpandCollapseItem.Id = 0;
            ribbonControl1.ItemPanelStyle = DevExpress.XtraBars.Ribbon.RibbonItemPanelStyle.Classic;
            ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] { ribbonControl1.ExpandCollapseItem, barBtnWaterImport, barBtnCalc, barBtnPause, barBtnContinue, barBtnOver });
            ribbonControl1.Location = new Point(0, 0);
            ribbonControl1.Margin = new Padding(3, 4, 3, 4);
            ribbonControl1.MaxItemId = 20;
            ribbonControl1.Name = "ribbonControl1";
            ribbonControl1.OptionsMenuMinWidth = 377;
            ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] { ribbonPage });
            ribbonControl1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.TabletOffice;
            ribbonControl1.ShowApplicationButton = DefaultBoolean.False;
            ribbonControl1.ShowExpandCollapseButton = DefaultBoolean.False;
            ribbonControl1.ShowPageHeadersMode = DevExpress.XtraBars.Ribbon.ShowPageHeadersMode.Hide;
            ribbonControl1.Size = new Size(935, 64);
            ribbonControl1.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Hidden;
            // 
            // barBtnWaterImport
            // 
            barBtnWaterImport.Caption = "水量导入";
            barBtnWaterImport.Id = 13;
            barBtnWaterImport.ImageOptions.SvgImage = (DevExpress.Utils.Svg.SvgImage)resources.GetObject("barBtnWaterImport.ImageOptions.SvgImage");
            barBtnWaterImport.Name = "barBtnWaterImport";
            barBtnWaterImport.ItemClick += barBtnWaterImport_ItemClick;
            // 
            // barBtnCalc
            // 
            barBtnCalc.Caption = "计算";
            barBtnCalc.Id = 14;
            barBtnCalc.ImageOptions.SvgImage = (DevExpress.Utils.Svg.SvgImage)resources.GetObject("barBtnCalc.ImageOptions.SvgImage");
            barBtnCalc.Name = "barBtnCalc";
            barBtnCalc.ItemClick += barBtnCalc_ItemClick;
            // 
            // barBtnPause
            // 
            barBtnPause.Caption = "暂停";
            barBtnPause.Enabled = false;
            barBtnPause.Id = 15;
            barBtnPause.ImageOptions.SvgImage = (DevExpress.Utils.Svg.SvgImage)resources.GetObject("barBtnPause.ImageOptions.SvgImage");
            barBtnPause.Name = "barBtnPause";
            barBtnPause.ItemClick += barBtnPause_ItemClick;
            // 
            // barBtnContinue
            // 
            barBtnContinue.Caption = "继续";
            barBtnContinue.Enabled = false;
            barBtnContinue.Id = 18;
            barBtnContinue.ImageOptions.SvgImage = (DevExpress.Utils.Svg.SvgImage)resources.GetObject("barBtnContinue.ImageOptions.SvgImage");
            barBtnContinue.Name = "barBtnContinue";
            barBtnContinue.ItemClick += barBtnContinue_ItemClick;
            // 
            // barBtnOver
            // 
            barBtnOver.Caption = "结束";
            barBtnOver.Enabled = false;
            barBtnOver.Id = 19;
            barBtnOver.ImageOptions.SvgImage = (DevExpress.Utils.Svg.SvgImage)resources.GetObject("barBtnOver.ImageOptions.SvgImage");
            barBtnOver.Name = "barBtnOver";
            barBtnOver.ItemClick += barBtnOver_ItemClick;
            // 
            // ribbonPage
            // 
            ribbonPage.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] { PageGroup });
            ribbonPage.Name = "ribbonPage";
            ribbonPage.Text = "Page";
            // 
            // PageGroup
            // 
            PageGroup.ItemLinks.Add(barBtnWaterImport);
            PageGroup.ItemLinks.Add(barBtnCalc);
            PageGroup.ItemLinks.Add(barBtnPause);
            PageGroup.ItemLinks.Add(barBtnContinue);
            PageGroup.ItemLinks.Add(barBtnOver);
            PageGroup.Name = "PageGroup";
            PageGroup.Text = "PageGroup";
            // 
            // Root
            // 
            Root.EnableIndentsWithoutBorders = DefaultBoolean.True;
            Root.GroupBordersVisible = false;
            Root.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] { layoutControlGroup1, layoutControlGroup2, layoutControlGroup3, layoutControlGroup5, layoutControlGroup4 });
            Root.Name = "Root";
            Root.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
            Root.Size = new Size(449, 812);
            Root.TextVisible = false;
            // 
            // layoutControlGroup1
            // 
            layoutControlGroup1.AppearanceGroup.FontSizeDelta = 2;
            layoutControlGroup1.AppearanceGroup.Options.UseFont = true;
            layoutControlGroup1.AppearanceGroup.Options.UseTextOptions = true;
            layoutControlGroup1.AppearanceGroup.TextOptions.HAlignment = HorzAlignment.Center;
            layoutControlGroup1.ExpandButtonVisible = true;
            layoutControlGroup1.GroupStyle = GroupStyle.Title;
            layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] { layoutControlItem2, layoutControlItem3, layoutControlItem1, layoutControlItem12 });
            layoutControlGroup1.Location = new Point(0, 61);
            layoutControlGroup1.Name = "layoutControlGroup1";
            layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, 3, 3);
            layoutControlGroup1.Size = new Size(449, 89);
            layoutControlGroup1.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
            layoutControlGroup1.Text = "能效数据(kW·h)";
            // 
            // layoutControlItem2
            // 
            layoutControlItem2.Control = txtEnergyEfficient;
            layoutControlItem2.Location = new Point(0, 28);
            layoutControlItem2.Name = "layoutControlItem2";
            layoutControlItem2.Size = new Size(222, 28);
            layoutControlItem2.Text = "节电量:";
            layoutControlItem2.TextSize = new Size(90, 18);
            // 
            // layoutControlItem3
            // 
            layoutControlItem3.Control = txtEnergyEfficiencyRatio;
            layoutControlItem3.Location = new Point(222, 28);
            layoutControlItem3.Name = "layoutControlItem3";
            layoutControlItem3.Size = new Size(223, 28);
            layoutControlItem3.Text = "节能比:";
            layoutControlItem3.TextSize = new Size(90, 18);
            // 
            // layoutControlItem1
            // 
            layoutControlItem1.Control = txtTotalEnergyVP;
            layoutControlItem1.Location = new Point(222, 0);
            layoutControlItem1.Name = "layoutControlItem1";
            layoutControlItem1.Size = new Size(223, 28);
            layoutControlItem1.Text = "变压总能耗:";
            layoutControlItem1.TextSize = new Size(90, 18);
            // 
            // layoutControlItem12
            // 
            layoutControlItem12.Control = txtTotalEnergyCP;
            layoutControlItem12.Location = new Point(0, 0);
            layoutControlItem12.Name = "layoutControlItem12";
            layoutControlItem12.OptionsTableLayoutItem.ColumnIndex = 1;
            layoutControlItem12.Size = new Size(222, 28);
            layoutControlItem12.Text = "恒压总能耗:";
            layoutControlItem12.TextSize = new Size(90, 18);
            // 
            // layoutControlGroup2
            // 
            layoutControlGroup2.AppearanceGroup.FontSizeDelta = 2;
            layoutControlGroup2.AppearanceGroup.Options.UseFont = true;
            layoutControlGroup2.AppearanceGroup.Options.UseTextOptions = true;
            layoutControlGroup2.AppearanceGroup.TextOptions.HAlignment = HorzAlignment.Center;
            layoutControlGroup2.CustomizationFormText = "瞬时数据";
            layoutControlGroup2.ExpandButtonVisible = true;
            layoutControlGroup2.GroupStyle = GroupStyle.Title;
            layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] { layoutControlItem9, layoutControlItem6, layoutControlItem4, layoutControlItem7 });
            layoutControlGroup2.Location = new Point(0, 150);
            layoutControlGroup2.Name = "layoutControlGroup2";
            layoutControlGroup2.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, 3, 3);
            layoutControlGroup2.Size = new Size(449, 89);
            layoutControlGroup2.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
            layoutControlGroup2.Text = "瞬时数据";
            // 
            // layoutControlItem9
            // 
            layoutControlItem9.AppearanceItemCaption.FontSizeDelta = 1;
            layoutControlItem9.AppearanceItemCaption.Options.UseFont = true;
            layoutControlItem9.Control = txtTime;
            layoutControlItem9.CustomizationFormText = "时间:";
            layoutControlItem9.Location = new Point(0, 0);
            layoutControlItem9.Name = "layoutControlItem9";
            layoutControlItem9.Size = new Size(222, 28);
            layoutControlItem9.Text = "时间:";
            layoutControlItem9.TextSize = new Size(90, 21);
            // 
            // layoutControlItem6
            // 
            layoutControlItem6.Control = txtPumpP;
            layoutControlItem6.Location = new Point(0, 28);
            layoutControlItem6.Name = "layoutControlItem6";
            layoutControlItem6.Size = new Size(222, 28);
            layoutControlItem6.Text = "泵后压力:";
            layoutControlItem6.TextSize = new Size(90, 18);
            // 
            // layoutControlItem4
            // 
            layoutControlItem4.Control = txtPower;
            layoutControlItem4.CustomizationFormText = "功率:";
            layoutControlItem4.Location = new Point(222, 0);
            layoutControlItem4.Name = "layoutControlItem4";
            layoutControlItem4.Size = new Size(223, 28);
            layoutControlItem4.Text = "功率:";
            layoutControlItem4.TextSize = new Size(90, 18);
            // 
            // layoutControlItem7
            // 
            layoutControlItem7.Control = txtTerminalP;
            layoutControlItem7.Location = new Point(222, 28);
            layoutControlItem7.Name = "layoutControlItem7";
            layoutControlItem7.Size = new Size(223, 28);
            layoutControlItem7.Text = "用户压力:";
            layoutControlItem7.TextSize = new Size(90, 18);
            // 
            // layoutControlGroup3
            // 
            layoutControlGroup3.AppearanceGroup.FontSizeDelta = 2;
            layoutControlGroup3.AppearanceGroup.Options.UseFont = true;
            layoutControlGroup3.ExpandButtonVisible = true;
            layoutControlGroup3.GroupStyle = GroupStyle.Title;
            layoutControlGroup3.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] { layoutControlItem10, layoutControlItem11 });
            layoutControlGroup3.Location = new Point(0, 0);
            layoutControlGroup3.Name = "layoutControlGroup3";
            layoutControlGroup3.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, 3, 3);
            layoutControlGroup3.Size = new Size(449, 61);
            layoutControlGroup3.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
            layoutControlGroup3.Text = "基础数据";
            // 
            // layoutControlItem10
            // 
            layoutControlItem10.Control = txtConstantP;
            layoutControlItem10.Location = new Point(0, 0);
            layoutControlItem10.Name = "layoutControlItem10";
            layoutControlItem10.Size = new Size(222, 28);
            layoutControlItem10.Text = "恒定压力(m):";
            layoutControlItem10.TextSize = new Size(90, 18);
            // 
            // layoutControlItem11
            // 
            layoutControlItem11.Control = txtEndP;
            layoutControlItem11.Location = new Point(222, 0);
            layoutControlItem11.Name = "layoutControlItem11";
            layoutControlItem11.Size = new Size(223, 28);
            layoutControlItem11.Text = "末端压力(m):";
            layoutControlItem11.TextSize = new Size(90, 18);
            // 
            // layoutControlGroup5
            // 
            layoutControlGroup5.ExpandButtonVisible = true;
            layoutControlGroup5.Expanded = false;
            layoutControlGroup5.GroupStyle = GroupStyle.Title;
            layoutControlGroup5.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] { layoutControlItem5 });
            layoutControlGroup5.Location = new Point(0, 781);
            layoutControlGroup5.Name = "layoutControlGroup5";
            layoutControlGroup5.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
            layoutControlGroup5.Size = new Size(449, 31);
            layoutControlGroup5.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
            layoutControlGroup5.Text = "特性曲线";
            // 
            // layoutControlItem5
            // 
            layoutControlItem5.Location = new Point(0, 0);
            layoutControlItem5.Name = "layoutControlItem5";
            layoutControlItem5.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
            layoutControlItem5.Size = new Size(449, 388);
            layoutControlItem5.TextSize = new Size(0, 0);
            layoutControlItem5.TextVisible = false;
            // 
            // layoutControlGroup4
            // 
            layoutControlGroup4.AppearanceGroup.FontSizeDelta = 2;
            layoutControlGroup4.AppearanceGroup.Options.UseFont = true;
            layoutControlGroup4.AppearanceGroup.Options.UseTextOptions = true;
            layoutControlGroup4.AppearanceGroup.TextOptions.HAlignment = HorzAlignment.Center;
            layoutControlGroup4.ExpandButtonVisible = true;
            layoutControlGroup4.GroupStyle = GroupStyle.Title;
            layoutControlGroup4.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] { layoutControlItem13 });
            layoutControlGroup4.Location = new Point(0, 239);
            layoutControlGroup4.Name = "layoutControlGroup4";
            layoutControlGroup4.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
            layoutControlGroup4.Size = new Size(449, 542);
            layoutControlGroup4.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
            layoutControlGroup4.Text = "开泵数据";
            // 
            // layoutControlItem13
            // 
            layoutControlItem13.Control = gridControl1;
            layoutControlItem13.Location = new Point(0, 0);
            layoutControlItem13.Name = "layoutControlItem13";
            layoutControlItem13.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
            layoutControlItem13.Size = new Size(449, 515);
            layoutControlItem13.TextSize = new Size(0, 0);
            layoutControlItem13.TextVisible = false;
            // 
            // chartControl
            // 
            chartControl.BorderOptions.Visibility = DefaultBoolean.False;
            chartControl.CrosshairEnabled = DefaultBoolean.False;
            chartControl.CrosshairOptions.ShowOnlyInFocusedPane = false;
            constantLine3.AxisValueSerializable = "1";
            constantLine3.ConstantLineID = 0;
            constantLine3.Name = "ConstantLineTime";
            constantLine3.ShowInLegend = false;
            constantLine3.Title.Text = "时间";
            xyDiagram2.AxisX.ConstantLines.AddRange(new DevExpress.XtraCharts.ConstantLine[] { constantLine3 });
            xyDiagram2.AxisX.Visibility = DefaultBoolean.True;
            xyDiagram2.AxisX.VisibleInPanesSerializable = "2";
            constantLine4.AxisValueSerializable = "1";
            constantLine4.Color = Color.IndianRed;
            constantLine4.ConstantLineID = 0;
            constantLine4.LineStyle.DashStyle = DevExpress.XtraCharts.DashStyle.Dash;
            constantLine4.LineStyle.Thickness = 2;
            constantLine4.Name = "ConstantLineP";
            constantLine4.ShowInLegend = false;
            constantLine4.Title.DXFont = new DevExpress.Drawing.DXFont("Tahoma", 10F);
            constantLine4.Title.Text = "恒压值";
            constantLine4.Title.TextColor = Color.IndianRed;
            constantLine4.Visible = false;
            xyDiagram2.AxisY.ConstantLines.AddRange(new DevExpress.XtraCharts.ConstantLine[] { constantLine4 });
            xyDiagram2.AxisY.GridLines.Visible = false;
            xyDiagram2.AxisY.Title.Text = "压力(m)";
            xyDiagram2.AxisY.Title.Visibility = DefaultBoolean.True;
            xyDiagram2.AxisY.VisibleInPanesSerializable = "0";
            xyDiagram2.PaneLayout.ColumnDefinitions.AddRange(new DevExpress.XtraCharts.LayoutDefinition[] { layoutDefinition3, layoutDefinition4 });
            xyDiagramPane4.Name = "PaneP";
            xyDiagramPane4.PaneID = 0;
            xyDiagramPane5.Name = "PanePE";
            xyDiagramPane5.PaneID = 1;
            xyDiagramPane6.Name = "PaneRun";
            xyDiagramPane6.PaneID = 2;
            xyDiagram2.Panes.AddRange(new DevExpress.XtraCharts.XYDiagramPane[] { xyDiagramPane4, xyDiagramPane5, xyDiagramPane6 });
            xyDiagram2.RuntimePaneCollapse = false;
            xyDiagram2.RuntimePaneResize = true;
            secondaryAxisy5.Alignment = DevExpress.XtraCharts.AxisAlignment.Near;
            secondaryAxisy5.AxisID = 0;
            secondaryAxisy5.Name = "AxisYQ";
            secondaryAxisy5.Title.Text = "流量(m³/h)";
            secondaryAxisy5.Title.Visibility = DefaultBoolean.True;
            secondaryAxisy5.VisibleInPanesSerializable = "-1";
            secondaryAxisy6.Alignment = DevExpress.XtraCharts.AxisAlignment.Near;
            secondaryAxisy6.AxisID = 1;
            secondaryAxisy6.Name = "AxisYPower";
            secondaryAxisy6.Title.Text = "功率(kw)";
            secondaryAxisy6.Title.Visibility = DefaultBoolean.True;
            secondaryAxisy6.VisibleInPanesSerializable = "1";
            secondaryAxisy7.AxisID = 2;
            secondaryAxisy7.Name = "AxisYE";
            secondaryAxisy7.Title.Text = "效率(%)";
            secondaryAxisy7.Title.Visibility = DefaultBoolean.True;
            secondaryAxisy7.Visibility = DefaultBoolean.False;
            secondaryAxisy7.VisibleInPanesSerializable = "-1";
            secondaryAxisy8.Alignment = DevExpress.XtraCharts.AxisAlignment.Near;
            secondaryAxisy8.AxisID = 3;
            secondaryAxisy8.Name = "AxisYRun";
            secondaryAxisy8.Title.Text = "运行状态";
            secondaryAxisy8.Title.Visibility = DefaultBoolean.True;
            secondaryAxisy8.Visibility = DefaultBoolean.False;
            secondaryAxisy8.VisibleInPanesSerializable = "2";
            xyDiagram2.SecondaryAxesY.AddRange(new DevExpress.XtraCharts.SecondaryAxisY[] { secondaryAxisy5, secondaryAxisy6, secondaryAxisy7, secondaryAxisy8 });
            chartControl.Diagram = xyDiagram2;
            chartControl.Dock = DockStyle.Fill;
            chartControl.Legend.AlignmentHorizontal = DevExpress.XtraCharts.LegendAlignmentHorizontal.Right;
            chartControl.Legend.AlignmentVertical = DevExpress.XtraCharts.LegendAlignmentVertical.TopOutside;
            chartControl.Legend.Border.Visibility = DefaultBoolean.False;
            chartControl.Legend.Direction = DevExpress.XtraCharts.LegendDirection.LeftToRight;
            chartControl.Legend.LegendID = -1;
            chartControl.Legend.Visibility = DefaultBoolean.True;
            chartControl.Location = new Point(0, 0);
            chartControl.Margin = new Padding(3, 4, 3, 4);
            chartControl.Name = "chartControl";
            series10.LegendTextPattern = "用水趋势";
            series10.Name = "SeriesUsageQ";
            series10.SeriesID = 0;
            lineSeriesView7.AxisYName = "AxisYQ";
            lineSeriesView7.Color = Color.FromArgb(0, 112, 192);
            series10.View = lineSeriesView7;
            series11.CrosshairEnabled = DefaultBoolean.False;
            series11.LegendTextPattern = "用水趋势范围";
            series11.Name = "SeriesRangeAreaQ";
            series11.SeriesID = 1;
            rangeAreaSeriesView3.AxisYName = "AxisYQ";
            rangeAreaSeriesView3.Color = Color.FromArgb(219, 229, 241);
            rangeAreaSeriesView3.EmptyPointOptions.FillStyle.FillMode = DevExpress.XtraCharts.FillMode.Solid;
            rangeAreaSeriesView3.RangeControlOptions.ViewType = DevExpress.XtraCharts.RangeControlViewType.Area;
            series11.View = rangeAreaSeriesView3;
            series12.LegendTextPattern = "泵后压力范围";
            series12.Name = "SeriesRangeArea";
            series12.SeriesID = 2;
            rangeAreaSeriesView4.Color = Color.FromArgb(242, 220, 219);
            rangeAreaSeriesView4.EmptyPointOptions.FillStyle.FillMode = DevExpress.XtraCharts.FillMode.Solid;
            rangeAreaSeriesView4.PaneName = "PaneP";
            series12.View = rangeAreaSeriesView4;
            series13.LegendTextPattern = "泵后平均压力";
            series13.Name = "SeriesAvgP";
            series13.SeriesID = 3;
            lineSeriesView8.PaneName = "PaneP";
            series13.View = lineSeriesView8;
            series14.LegendTextPattern = "计算用户压力";
            series14.Name = "SeriesCalcP";
            series14.SeriesID = 4;
            lineSeriesView9.PaneName = "PaneP";
            series14.View = lineSeriesView9;
            series14.Visible = false;
            series15.LegendTextPattern = "真实用户压力";
            series15.Name = "SeriesRealP";
            series15.SeriesID = 5;
            lineSeriesView10.Color = Color.FromArgb(178, 162, 199);
            lineSeriesView10.PaneName = "PaneP";
            series15.View = lineSeriesView10;
            series15.Visible = false;
            series16.LegendTextPattern = "功率";
            series16.Name = "SeriesPower";
            series16.SeriesID = 6;
            lineSeriesView11.AxisYName = "AxisYPower";
            lineSeriesView11.Color = Color.FromArgb(192, 0, 0);
            lineSeriesView11.PaneName = "PanePE";
            series16.View = lineSeriesView11;
            series17.LegendTextPattern = "效率";
            series17.Name = "SeriesE";
            series17.SeriesID = 7;
            lineSeriesView12.AxisYName = "AxisYE";
            lineSeriesView12.Color = Color.FromArgb(0, 176, 80);
            lineSeriesView12.PaneName = "PanePE";
            series17.View = lineSeriesView12;
            series17.Visible = false;
            series18.Name = "SeriesDefault";
            series18.SeriesID = 8;
            series18.ShowInLegend = false;
            pointSeriesView2.AxisYName = "AxisYRun";
            pointSeriesView2.PaneName = "PaneRun";
            pointSeriesView2.PointMarkerOptions.Kind = DevExpress.XtraCharts.MarkerKind.Square;
            series18.View = pointSeriesView2;
            chartControl.SeriesSerializable = new DevExpress.XtraCharts.Series[]
    {
    series10,
    series11,
    series12,
    series13,
    series14,
    series15,
    series16,
    series17,
    series18
    };
            chartControl.Size = new Size(485, 812);
            chartControl.TabIndex = 1;
            // 
            // sidePanelChart
            // 
            sidePanelChart.Controls.Add(chartControl);
            sidePanelChart.Dock = DockStyle.Fill;
            sidePanelChart.Location = new Point(0, 64);
            sidePanelChart.Margin = new Padding(3, 4, 3, 4);
            sidePanelChart.Name = "sidePanelChart";
            sidePanelChart.Size = new Size(485, 812);
            sidePanelChart.TabIndex = 6;
            sidePanelChart.Text = "sidePanel3";
            // 
            // SimulationSchedulePage
            // 
            Appearance.BackColor = SystemColors.Control;
            Appearance.Options.UseBackColor = true;
            AutoScaleDimensions = new SizeF(8F, 18F);
            AutoScaleMode = AutoScaleMode.Font;
            Controls.Add(sidePanelChart);
            Controls.Add(sidePanelInfo);
            Controls.Add(ribbonControl1);
            Margin = new Padding(3, 5, 3, 5);
            Name = "SimulationSchedulePage";
            Size = new Size(935, 876);
            sidePanelInfo.ResumeLayout(false);
            ((ISupportInitialize)layoutControl1).EndInit();
            layoutControl1.ResumeLayout(false);
            ((ISupportInitialize)txtEndP.Properties).EndInit();
            ((ISupportInitialize)gridControl1).EndInit();
            ((ISupportInitialize)gridView1).EndInit();
            ((ISupportInitialize)txtTotalEnergyVP.Properties).EndInit();
            ((ISupportInitialize)txtEnergyEfficient.Properties).EndInit();
            ((ISupportInitialize)txtEnergyEfficiencyRatio.Properties).EndInit();
            ((ISupportInitialize)txtPower.Properties).EndInit();
            ((ISupportInitialize)txtPumpP.Properties).EndInit();
            ((ISupportInitialize)txtTerminalP.Properties).EndInit();
            ((ISupportInitialize)txtConstantP.Properties).EndInit();
            ((ISupportInitialize)txtTime.Properties).EndInit();
            ((ISupportInitialize)txtTotalEnergyCP.Properties).EndInit();
            ((ISupportInitialize)ribbonControl1).EndInit();
            ((ISupportInitialize)Root).EndInit();
            ((ISupportInitialize)layoutControlGroup1).EndInit();
            ((ISupportInitialize)layoutControlItem2).EndInit();
            ((ISupportInitialize)layoutControlItem3).EndInit();
            ((ISupportInitialize)layoutControlItem1).EndInit();
            ((ISupportInitialize)layoutControlItem12).EndInit();
            ((ISupportInitialize)layoutControlGroup2).EndInit();
            ((ISupportInitialize)layoutControlItem9).EndInit();
            ((ISupportInitialize)layoutControlItem6).EndInit();
            ((ISupportInitialize)layoutControlItem4).EndInit();
            ((ISupportInitialize)layoutControlItem7).EndInit();
            ((ISupportInitialize)layoutControlGroup3).EndInit();
            ((ISupportInitialize)layoutControlItem10).EndInit();
            ((ISupportInitialize)layoutControlItem11).EndInit();
            ((ISupportInitialize)layoutControlGroup5).EndInit();
            ((ISupportInitialize)layoutControlItem5).EndInit();
            ((ISupportInitialize)layoutControlGroup4).EndInit();
            ((ISupportInitialize)layoutControlItem13).EndInit();
            ((ISupportInitialize)constantLine3).EndInit();
            ((ISupportInitialize)constantLine4).EndInit();
            ((ISupportInitialize)xyDiagramPane4).EndInit();
            ((ISupportInitialize)xyDiagramPane5).EndInit();
            ((ISupportInitialize)xyDiagramPane6).EndInit();
            ((ISupportInitialize)secondaryAxisy5).EndInit();
            ((ISupportInitialize)secondaryAxisy6).EndInit();
            ((ISupportInitialize)secondaryAxisy7).EndInit();
            ((ISupportInitialize)secondaryAxisy8).EndInit();
            ((ISupportInitialize)xyDiagram2).EndInit();
            ((ISupportInitialize)lineSeriesView7).EndInit();
            ((ISupportInitialize)series10).EndInit();
            ((ISupportInitialize)rangeAreaSeriesView3).EndInit();
            ((ISupportInitialize)series11).EndInit();
            ((ISupportInitialize)rangeAreaSeriesView4).EndInit();
            ((ISupportInitialize)series12).EndInit();
            ((ISupportInitialize)lineSeriesView8).EndInit();
            ((ISupportInitialize)series13).EndInit();
            ((ISupportInitialize)lineSeriesView9).EndInit();
            ((ISupportInitialize)series14).EndInit();
            ((ISupportInitialize)lineSeriesView10).EndInit();
            ((ISupportInitialize)series15).EndInit();
            ((ISupportInitialize)lineSeriesView11).EndInit();
            ((ISupportInitialize)series16).EndInit();
            ((ISupportInitialize)lineSeriesView12).EndInit();
            ((ISupportInitialize)series17).EndInit();
            ((ISupportInitialize)pointSeriesView2).EndInit();
            ((ISupportInitialize)series18).EndInit();
            ((ISupportInitialize)chartControl).EndInit();
            sidePanelChart.ResumeLayout(false);
            ResumeLayout(false);
            PerformLayout();
        }
 
        #endregion
        private DevExpress.XtraEditors.SidePanel sidePanelInfo;
        private DevExpress.XtraCharts.ChartControl chartControl;
        private DevExpress.XtraLayout.LayoutControl layoutControl1;
        private DevExpress.XtraLayout.LayoutControlGroup Root;
        private DevExpress.XtraLayout.LayoutControlGroup layoutControlGroup1;
        private DevExpress.XtraLayout.LayoutControlGroup layoutControlGroup2;
        private DevExpress.XtraEditors.TextEdit txtTotalEnergyVP;
        private DevExpress.XtraEditors.TextEdit txtEnergyEfficient;
        private DevExpress.XtraEditors.TextEdit txtEnergyEfficiencyRatio;
        private DevExpress.XtraLayout.LayoutControlItem layoutControlItem2;
        private DevExpress.XtraLayout.LayoutControlItem layoutControlItem3;
        private DevExpress.XtraEditors.TextEdit txtPower;
        private DevExpress.XtraEditors.TextEdit txtPumpP;
        private DevExpress.XtraEditors.TextEdit txtTerminalP;
        private DevExpress.XtraLayout.LayoutControlItem layoutControlItem4;
        private DevExpress.XtraLayout.LayoutControlItem layoutControlItem6;
        private DevExpress.XtraLayout.LayoutControlItem layoutControlItem7;
        private DevExpress.XtraEditors.SidePanel sidePanelChart;
        private DevExpress.XtraLayout.LayoutControlItem layoutControlItem9;
        private DevExpress.XtraEditors.TextEdit txtConstantP;
        private DevExpress.XtraLayout.LayoutControlGroup layoutControlGroup3;
        private DevExpress.XtraLayout.LayoutControlItem layoutControlItem10;
        private DevExpress.XtraEditors.TextEdit txtEndP;
        private DevExpress.XtraLayout.LayoutControlItem layoutControlItem11;
        private DevExpress.XtraGrid.GridControl gridControl1;
        private GridView gridView1;
        private DevExpress.XtraLayout.LayoutControlItem layoutControlItem13;
        private DevExpress.XtraLayout.LayoutControlGroup layoutControlGroup4;
        private DevExpress.XtraGrid.Columns.GridColumn colID;
        private DevExpress.XtraGrid.Columns.GridColumn colHZ;
        private DevExpress.XtraEditors.TextEdit txtTime; 
        private DevExpress.XtraLayout.LayoutControlGroup layoutControlGroup5;
        private DevExpress.XtraLayout.LayoutControlItem layoutControlItem5;
        private DevExpress.XtraGrid.Columns.GridColumn colEff;
        private DevExpress.XtraGrid.Columns.GridColumn colPower;
        private DevExpress.XtraGrid.Columns.GridColumn colFlow;
        private DevExpress.XtraBars.Ribbon.RibbonControl ribbonControl1;
        private DevExpress.XtraBars.BarButtonItem barBtnWaterImport;
        private DevExpress.XtraBars.BarButtonItem barBtnCalc;
        private DevExpress.XtraBars.BarButtonItem barBtnPause;
        private DevExpress.XtraBars.BarButtonItem barBtnContinue;
        private DevExpress.XtraBars.BarButtonItem barBtnOver;
        private DevExpress.XtraBars.Ribbon.RibbonPage ribbonPage;
        private DevExpress.XtraBars.Ribbon.RibbonPageGroup PageGroup;
        private DevExpress.XtraEditors.TextEdit txtTotalEnergyCP;
        private DevExpress.XtraGrid.Columns.GridColumn colHead;
        private DevExpress.XtraLayout.LayoutControlItem layoutControlItem1;
        private DevExpress.XtraLayout.LayoutControlItem layoutControlItem12;
    }
}