namespace Yw.WinFrmUI
{
///
///
///
public partial class SetParasDlg : DevExpress.XtraEditors.XtraForm
{
///
///
///
public SetParasDlg()
{
InitializeComponent();
this.IconOptions.Icon = Yw.WinFrmUI.GlobalParas.AppIcon;
this.layoutControl1.SetupLayoutControl();
this.generalOkAndCancelCtrl1.OkEvent += GeneralOkAndCancelCtrl1_OkEvent;
}
///
/// 重载数据事件
///
public event Action> ReloadDataEvent;
///
/// 绑定数据
///
public void SetBindingData(Dictionary dict)
{
this.setParasGridCtrl1.SetBindingData(dict);
}
//确定
private void GeneralOkAndCancelCtrl1_OkEvent()
{
var paras = this.setParasGridCtrl1.GetParas();
this.ReloadDataEvent?.Invoke(paras);
this.DialogResult = DialogResult.OK;
this.Close();
}
}
}