using DevExpress.XtraEditors;
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel;
|
using System.Data;
|
using System.Drawing;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using System.Windows.Forms;
|
|
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;
|
}
|
|
|
}
|
}
|