duheng
2024-07-23 3fec42c6383aa3b8d65f744a93b8a918d7cc6e02
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
namespace HStation.WinFrmUI.Basic
{
    public partial class SysPropManageMainPanel : DocumentPage
    {
        public SysPropManageMainPanel()
        {
            InitializeComponent();
            this.gridView1.SetNormalView();
            this.gridView1.RegistCustomDrawRowIndicator();
            this.propGroupTreeListCtrl1.FocusedChangedEvent += ModuleTreeListCtrl1_FocusedChangedEvent;
        }
 
        private List<SysPropViewModel> _allBindingList = new List<SysPropViewModel>();
 
        private Yw.BLL.SysProp _bll = null;
 
        public override void InitialDataSource()
        {
            SetBindingData();
            this.propGroupTreeListCtrl1.SetBindingData();
        }
 
        //聚焦切换
        private async void ModuleTreeListCtrl1_FocusedChangedEvent(long groupID)
        {
            var alllist = await _bll.GetByGroupID(groupID);
            _allBindingList.Clear();
            foreach (var item in alllist)
            {
                _allBindingList.Add(new SysPropViewModel(item));
            }
            this.propViewModelBindingSource.DataSource = _allBindingList;
            this.propViewModelBindingSource.ResetBindings(false);
        }
 
        private void SetBindingData()
        {
            _bll = new Yw.BLL.SysProp();
        }
 
        //添加
        private void BtnAdd_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            var dlg = new AddSysPropDlg();
            var groupid = this.propGroupTreeListCtrl1.GetCurrentGroupID();
            var typeid = this.propGroupTreeListCtrl1.GetCurrentTypeID();
            if (groupid <= 0)
                return;
            if (typeid <= 0)
                return;
            dlg.SetBindingData(groupid, typeid);
            dlg.ReloadDataEvent += async (rhs) =>
            {
                var id = await _bll.Insert(rhs);
                if (id > 0)
                {
                    var model = await _bll.GetByID(id);
                    _allBindingList.Add(new SysPropViewModel(model));
                    this.propViewModelBindingSource.ResetBindings(false);
                    return true;
                }
                return false;
            };
            dlg.ShowDialog();
        }
 
        //编辑
        private void barBtnEditPumpCurve_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            var dlg = new EditSysPropDlg();
            var vm = this.gridView1.GetCurrentViewModel(_allBindingList);
            if (vm == null)
            {
                MessageBoxHelper.ShowWarning("请选择数据行");
                return;
            }
            dlg.SetBindingData(vm.ID);
            dlg.ReloadDataEvent += async (rhs) =>
            {
                if (await _bll.Update(rhs))
                {
                    vm.Reset(rhs);
                    return true;
                }
                return false;
            };
            dlg.ShowDialog();
        }
 
        //删除
        private async void BtnDelete_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            var currentVm = this.gridView1.GetCurrentViewModel(_allBindingList);
            if (currentVm == null)
            {
                MessageBoxHelper.ShowWarning("请选择数据行!");
                return;
            }
            if (MessageBoxHelper.IsClickOk($"确认删除数据行?", "提示"))
                return;
            var result = await _bll.DeleteByID(currentVm.ID);
            if (result)
            {
                _allBindingList.Remove(currentVm);
                this.propViewModelBindingSource.ResetBindings(false);
                MessageBoxHelper.ShowSuccess($"删除成功!");
            }
            else
            {
                MessageBoxHelper.ShowError($"删除失败!");
                return;
            }
        }
 
        //属性选项
        private void gridView1_RowCellClick(object sender, DevExpress.XtraGrid.Views.Grid.RowCellClickEventArgs e)
        {
            if (_allBindingList == null || _allBindingList.Count < 1)
                return;
            var row = this.gridView1.GetCurrentViewModel(_allBindingList);
            if (row == null)
                return;
            if (e.Column == this.ColPropEdit)
            {
                var dlg = new SetSysPropChoiceDlg();
                dlg.SetBindingData(row.ID);
                dlg.ShowDialog();
            }
        }
    }
}