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 { /// /// /// 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; } } }