duheng
2024-09-27 24c2e282bac49627cc1cbac2d4b8df73c1d066b7
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
namespace HStation.WinFrmUI
{
    public partial class XhsProjectSimulationL3dCtrl : DevExpress.XtraEditors.XtraUserControl
    {
        public XhsProjectSimulationL3dCtrl()
        {
            InitializeComponent();
        }
 
        private Yw.Model.HydroModelInfo _hydroInfo = null;
 
        /// <summary>
        /// 绑定数据
        /// </summary>
        public void SetBindingData(Yw.Model.HydroModelInfo rhs)
        {
            _hydroInfo = rhs;
            if (_hydroInfo == null)
            {
                return;
            }
            var netWork = Yw.WinFrmUI.HydroL3dTransferHelper.ToL3dNetworkViewModel(rhs);
            this.networkPanel1.Initial(netWork);
        }
 
 
 
    }
}