Shuxia Ning
2025-01-08 0a1bf56909464e938a68c29b26ab88ff51380fad
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
namespace HStation.WinFrmUI
{
    public partial class ValveChartViewCtrl : DevExpress.XtraEditors.XtraUserControl
    {
        public ValveChartViewCtrl()
        {
            InitializeComponent();
            this.bar2.OptionsBar.AllowQuickCustomization = false;
        }
 
        /// <summary>
        /// 绑定数据
        /// </summary> 
        public void SetBindingData(Yw.Vmo.PhartDiagramExGraphListVmo vmo)
        {
 
        }
 
        /// <summary>
        /// 清空绑定数据
        /// </summary>
        public void ClearBindingData()
        {
 
        }
 
        //查询线
        private void barCekLineVisible_CheckedChanged(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
 
        }
 
        /// <summary>
        /// 获取
        /// </summary> 
        public Yw.Vmo.PhartDiagramExGraphListVmo Get()
        {
            return new();
        }
 
 
    }
}