lixiaojun
2025-01-22 0df9ca593108410bb143c65bfbc2075b9963934a
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
using DevExpress.XtraEditors;
using MFire.WinFrmUI;
using Yw.WinFrmUI;
 
namespace HStation.Desktop
{
    public partial class AutoUpdateConfirmDlg : DevExpress.XtraEditors.XtraForm
    {
        public AutoUpdateConfirmDlg()
        {
            InitializeComponent();
            this.IconOptions.Icon = Yw.WinFrmUI.GlobalParas.AppIcon;
            this.layoutControl1.SetupLayoutControl();
            this.generalOkAndCancelCtrl1.OkEvent += GeneralOkAndCancelCtrl1_OkEvent;
        }
 
        //确定事件
        private void GeneralOkAndCancelCtrl1_OkEvent()
        {
            this.DialogResult = DialogResult.OK;
            this.Close();
        }
 
 
    }
}