duheng
2024-12-09 477be839d94e42de8bef6c4fa55496253d4ceb7a
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
namespace Yw.WinFrmUI
{
    public partial class HydroWorkingMonitorEvaluationListCtrl : DevExpress.XtraEditors.XtraUserControl
    {
        public HydroWorkingMonitorEvaluationListCtrl()
        {
            InitializeComponent();
            this.gridView1.SetNormalView(30);
            this.gridView1.RegistCustomDrawRowIndicator(40);
        }
 
        private List<HydroWorkingMonitorEvaluationViewModel> _allBindingList = null;//所有绑定列表
 
        /// <summary>
        /// 绑定数据
        /// </summary>
        public void SetBindingData(List<HydroWorkingMonitorEvaluationViewModel> allBindingList)
        {
            _allBindingList = allBindingList;
            this.hydroWorkingMonitorEvaluationViewModelBindingSource.DataSource = _allBindingList;
            this.hydroWorkingMonitorEvaluationViewModelBindingSource.ResetBindings(false);
        }
 
        //自定义单元格
        private void gridView1_CustomDrawCell(object sender, DevExpress.XtraGrid.Views.Base.RowCellCustomDrawEventArgs e)
        {
            var row = this.gridView1.GetRow(e.RowHandle) as HydroWorkingMonitorEvaluationViewModel;
            if (row == null)
            {
                return;
            }
            if (e.Column == this.colMonitorValue || e.Column == this.colCalcuValue)
            {
                if (e.CellValue != null)
                {
                    e.DisplayText = $"{e.CellValue}{row.UnitName}";
                }
            }
            if (e.Column == this.colEvaluateError)
            {
                if (e.CellValue != null)
                {
                    e.DisplayText = $"{e.CellValue}%";
                    e.Appearance.ForeColor = Color.Red;
                }
            }
        }
 
 
    }
}