namespace Yw.WinFrmUI
{
///
///
///
public partial class VmoExceptionInfoDlg : DevExpress.XtraEditors.XtraForm
{
///
///
///
public VmoExceptionInfoDlg()
{
InitializeComponent();
this.IconOptions.Icon = GlobalParas.AppIcon;
this.layoutControl1.SetupLayoutControl();
}
///
/// 绑定
///
public void SetBindingData(Yw.Vmo.VException ex)
{
this.txtErrorCode.EditValue = ex.ErrorCode;
this.txtErrorMsg.EditValue = ex.ErrorMsg;
this.txtStackTrace.EditValue = ex.ErrorSource?.StackTrace;
}
}
}