ningshuxia
2025-03-31 36f1be9860b303afac93f93a15f0c62cba57c3c5
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
using DevExpress.XtraEditors.Repository;
using DevExpress.XtraVerticalGrid.Events;
 
namespace PBS.WinFrmUI.Hydro
{
    public partial class FacilityPropertyCtrl : DevExpress.XtraEditors.XtraUserControl
    {
        public FacilityPropertyCtrl()
        {
            InitializeComponent();
            this.layoutControl1.SetupLayoutControl();
            this.propertyGridControl1.OptionsView.ShowRootCategories = false;
            this.propertyGridControl1.OptionsBehavior.Editable = false;
            this.propertyGridControl1.OptionsBehavior.PropertySort = DevExpress.XtraVerticalGrid.PropertySort.NoSort;
            this.propertyGridControl1.OptionsView.AllowReadOnlyRowAppearance = DevExpress.Utils.DefaultBoolean.True;
            this.propertyGridControl1.OptionsView.ShowFocusedFrame = false;
            this.propertyGridControl1.OptionsView.ShowRootLevelIndent = false;
 
            this.propertyGridControl1.RecordWidth = 120;
            this.propertyGridControl1.RowHeaderWidth = 100;
        }
         
 
        /// <summary>
        /// 刷新数据事件
        /// </summary>
        public event Action RefreshDataEvent;
 
        /// <summary>
        /// 允许修改
        /// </summary>
        public bool AllowEdit { get; set; }
 
        /// <summary>
        /// 绑定数据
        /// </summary>
        public void SetBindingData(FacilityVmo facility)
        {
            FacilityPropertyViewModel vm = null;
            if (facility != null)
            {
                vm = new FacilityPropertyViewModel(facility);
            }
 
            this.propertyGridControl1.SelectedObject = vm;
        }
 
 
        //自定义属性Header缩进
        private void propertyGridControl1_CustomDrawRowHeaderIndent(object sender, CustomDrawRowHeaderIndentEventArgs e)
        {
 
        }
 
        //自定义属性Header显示
        private void propertyGridControl1_CustomDrawRowHeaderCell(object sender, CustomDrawRowHeaderCellEventArgs e)
        {
            //字段名称
            var fieldName = e.Row.Properties.FieldName.Split(new char[] { '.' }).Last();
            if (string.IsNullOrEmpty(fieldName))
            {
                return;
            }
            var realFieldName = fieldName;
            //属性描述器
            var descriptor = this.propertyGridControl1.GetPropertyDescriptor(e.Row);
            if (descriptor != null)
            { 
                //名称
                var displayNameAttri = (DisplayNameAttribute)descriptor.Attributes[typeof(DisplayNameAttribute)];
                if (displayNameAttri != null && !string.IsNullOrEmpty(displayNameAttri.DisplayName))
                {
                    e.Caption = displayNameAttri.DisplayName;
                } 
            } 
        }
 
        //自定义属性值显示
        private void propertyGridControl1_CustomDrawRowValueCell(object sender, CustomDrawRowValueCellEventArgs e)
        {
            //行字段名称
            var fieldName = e.Row.Properties.FieldName.Split(new char[] { '.' }).Last();
            if (string.IsNullOrEmpty(fieldName))
            {
                return;
            }
            //行类型全名称
            var fullTypeName = e.Row.Properties.RowType.FullName;
 
            if (fullTypeName == typeof(DateTime).FullName)
            {
                e.CellText = ((DateTime)e.Properties.Value).ToString("yyyy-MM-dd HH:mm:ss");
            }
            else if (fullTypeName == typeof(string[]).FullName)
            {
                var stringValue = (string[])e.Properties.Value;
                e.CellText = stringValue?.Length.ToString();
            }
            else if (fullTypeName == typeof(DictionaryPropertyAdapter).FullName)
            {
                e.CellText = string.Empty;
            }
            else
            {
                var descriptor = this.propertyGridControl1.GetPropertyDescriptor(e.Row);
                if (descriptor != null)
                { 
                    var displayUnitAttri = (DisplayUnitAttribute)descriptor.Attributes[typeof(DisplayUnitAttribute)];
                    if (displayUnitAttri != null)
                    {
                        if (e.Properties.Value != null)
                        {
                            e.CellText = e.Properties.Value.ToString() + " " + displayUnitAttri.Unit;
                        }
                    }
                }
            }
        }
 
        //属性编辑框的显示与取消
        private void propertyGridControl1_ShowingEditor(object sender, CancelEventArgs e)
        {
            var rowTypeFullName = this.propertyGridControl1.FocusedRow.Properties.RowType.FullName;
            var fieldName = this.propertyGridControl1.FocusedRow.Properties.FieldName.Split(new char[] { '.' }).Last();
 
            if (rowTypeFullName == typeof(Image).FullName)
            {
                e.Cancel = true;
                return;
            }
 
            var descriptor = this.propertyGridControl1.GetPropertyDescriptor(this.propertyGridControl1.FocusedRow);
 
            if (this.AllowEdit)
            {
                var showEditor = (ShowEditorAttribute)descriptor.Attributes[typeof(ShowEditorAttribute)];
                if (showEditor != null)
                {
                    if (!showEditor.ShowEditor)
                    {
                        e.Cancel = true;
                        return;
                    }
                }
            }
            else
            {
                var showEditorInView = (ShowEditorInViewAttribute)descriptor.Attributes[typeof(ShowEditorInViewAttribute)];
                if (showEditorInView == null)
                {
                    e.Cancel = true;
                    return;
                }
                if (!showEditorInView.ShowEditor)
                {
                    e.Cancel = true;
                    return;
                }
            }
        }
 
        //编辑框
        private void propertyGridControl1_CustomRecordCellEdit(object sender, GetCustomRowCellEditEventArgs e)
        {
            var fieldName = e.Row.Properties.FieldName.Split(new char[] { '.' }).Last();
            if (string.IsNullOrEmpty(fieldName))
            {
                return;
            }
            var descriptor = this.propertyGridControl1.GetPropertyDescriptor(e.Row);
            var rowTypeFullName = e.Row.Properties.RowType.FullName; 
 
            #region bool
 
            if (rowTypeFullName == typeof(bool).FullName)
            {
                var ckEdit = new RepositoryItemCheckEdit();
                ckEdit.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Standard;
                if (e.Row.Properties.ReadOnly == true)
                {
                    ckEdit.ReadOnly = true;
                }
                e.RepositoryItem = ckEdit;
            }
 
            #endregion
 
            #region 富文本
 
            if (descriptor != null)
            {
                var attri_multi = (MultiTextAttribute)descriptor.Attributes[typeof(MultiTextAttribute)];
                if (attri_multi != null)
                {
                    var memoEdit = new RepositoryItemMemoEdit();
                    if (e.Row.Properties.ReadOnly == true)
                    {
                        memoEdit.ReadOnly = true;
                    }
                    e.RepositoryItem = memoEdit;
                }
            }
 
            #endregion
 
            #region 图片
 
            if (rowTypeFullName == typeof(Image).FullName)
            {
                var picEdit = new RepositoryItemPictureEdit();
                picEdit.ReadOnly = true;
                picEdit.NullText = "空";
                e.RepositoryItem = picEdit;
                e.Row.Expanded = true;
            }
 
            #endregion
 
             
 
        }
  
        //刷新
        private void barBtnRefresh_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            this.RefreshDataEvent?.Invoke();
        }
 
        
    }
}