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();
|
}
|
|
|
}
|
}
|