ningshuxia
2025-03-27 afbafeecc1325bff849a17fb63b9b2b65b48ddf1
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
using DevExpress.XtraEditors.Controls;
using System.Data;
 
namespace Yw.WinFrmUI
{
    public partial class HydroAccuracyFlowCtrl : DevExpress.XtraEditors.XtraUserControl
    {
        public HydroAccuracyFlowCtrl()
        {
            InitializeComponent();
        }
 
        /// <summary>
        /// 边框可见性
        /// </summary>
        public bool BorderVisible
        {
            get
            {
                return this.gaugeControl1.BorderStyle != BorderStyles.NoBorder;
            }
            set
            {
                this.gaugeControl1.BorderStyle = value ?
                    BorderStyles.Default :
                    BorderStyles.NoBorder;
            }
        }
 
        /// <summary>
        /// 评价文本
        /// </summary>
        public string EvaluateText
        {
            get { return _evaluateText; }
            set
            {
                this.labelComponent1.Text = value;
                _evaluateText = value;
            }
        }
        private string _evaluateText;
 
        /// <summary>
        /// 绑定数据
        /// </summary>
        public void SetBindingData(HydroAccuracyFlowViewModel vm)
        {
            if (vm == null || !vm.AvgError.HasValue)
            {
                this.arcScaleComponent1.Value = 0;
                this.labelComponent1.Text = EvaluateText;
            }
            else
            {
                var avgValue = Math.Round(vm.AvgError.Value, 1);
                this.arcScaleComponent1.Value = (float)avgValue;
                this.labelComponent1.Text = $"{avgValue}%";
            }
        }
 
 
 
 
 
    }
}