Shuxia Ning
2025-01-07 4397d67969ede2fe50a1fd2953ecb69b2878d29c
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
namespace HStation.WinFrmUI
{
    public partial class ValveChartEditCtrl : DevExpress.XtraEditors.XtraUserControl
    {
        public ValveChartEditCtrl()
        {
            InitializeComponent();
        }
 
 
        private Yw.Vmo.PhartDiagramExGraphListVmo _vmo;
 
        /// <summary>
        /// 绑定数据
        /// </summary>  
        public void SetBindingData(Yw.Vmo.PhartDiagramExGraphListVmo vmo)
        {
            _vmo = vmo;
        }
 
        /// <summary>
        /// 获取
        /// </summary> 
        public Yw.Vmo.PhartDiagramExGraphListVmo Get()
        {
            return null;
        }
 
    }
}