qin
2025-03-14 185565a8eb30c0546746aad52aac0926d395a76d
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
using DevExpress.XtraEditors;
using HStation.PBS;
using Yw.WinFrmUI;
 
namespace PBS.WinFrmUI
{
    public partial class EditFacilityDlg : DevExpress.XtraEditors.XtraForm
    {
        public EditFacilityDlg()
        {
            InitializeComponent();
            this.IconOptions.Icon = Yw.WinFrmUI.GlobalParas.AppIcon;
            this.generalOkAndCancelCtrl1.OkEvent += GeneralOkAndCancelCtrl1_OkEvent;
        }
 
         public event Func<Vmo.FacilityVmo, Task<bool>> ReloadDataEvent;
 
        public void SetBindingData(Vmo.FacilityVmo vmo)
        {
            this.facilitiesCtrl.SetData(vmo);
         }
 
        /// <summary>
        /// 确定
        /// </summary>
        private async void GeneralOkAndCancelCtrl1_OkEvent()
        {
            var vmo = this.facilitiesCtrl.GetData();
            if (vmo == null)
                return;
            if (await ReloadDataEvent.Invoke(vmo))
            {
                TipFormHelper.ShowSucceed("修改成功!");
            }
            else
            {
                TipFormHelper.ShowError("修改失败!");
            }
            this.Close();
        }
    }
}