Shuxia Ning
2024-10-29 d047171e5bd87768a2bfab730f49a27a8e0e6b40
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
namespace HStation.WinFrmUI
{
    public partial class XhsProjectSimulationCalcuPrefixPureCtrl : DevExpress.XtraEditors.XtraUserControl
    {
        public XhsProjectSimulationCalcuPrefixPureCtrl()
        {
            InitializeComponent();
            foreach (var page in this.tabPane1.Pages)
            {
                if (page.Controls[0] is IXhsProjectSimulationCalcuPrefix ctrl)
                {
                    ctrl.ShowFindPanel = false;
                    ctrl.HydroClickEvent += (parter) =>
                    {
                        this.HydroClickEvent?.Invoke(parter);
                    };
                }
            }
        }
 
        /// <summary>
        /// 水力点击事件
        /// </summary>
        public event Action<Yw.Model.HydroParterInfo> HydroClickEvent;
 
        /// <summary>
        /// 列表为空时隐藏Page
        /// </summary>
        [Browsable(true)]
        [Display(Name = "列表为空时隐藏Page")]
        [DisplayName("列表为空时隐藏Page")]
        public bool HidePageWhenListIsNull
        {
            get { return _hidePageWhenListIsNull; }
            set { _hidePageWhenListIsNull = value; }
        }
        private bool _hidePageWhenListIsNull = true;
 
        /// <summary>
        /// 绑定
        /// </summary>
        public void SetBindingData(Yw.Model.HydroModelInfo hydroInfo)
        {
            if (hydroInfo == null)
            {
                return;
            }
            foreach (var page in this.tabPane1.Pages)
            {
                if (page.Controls[0] is IXhsProjectSimulationCalcuPrefix ctrl)
                {
                    ctrl.SetBindingData(hydroInfo);
                    if (HidePageWhenListIsNull)
                    {
                        if (!ctrl.HasHydroList)
                        {
                            page.PageVisible = false;
                        }
                    }
                }
            }
        }
 
 
 
    }
}