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