示例#1
0
 public ExceptionReportView(params Exception[] e)
 {
     InitializeComponent();
     reportInfo.SetExceptions(e);
     //ShowFullDetail();
     ShowLastReportInfot(reportInfo);
     presenter = new ExceptionReportPresenter(reportInfo);
 }
		public ExceptionReportView(ExceptionReportInfo reportInfo)
		{
			InitializeComponent();

			_presenter = new ExceptionReportPresenter(this, reportInfo)
			             {
			             	Clipboard = new WpfClipboard()
			             };
		}
示例#3
0
        public ExceptionReportView(ExceptionReportInfo reportInfo)
        {
            InitializeComponent();

            _presenter = new ExceptionReportPresenter(this, reportInfo)
            {
                Clipboard = new WpfClipboard()
            };
        }
        public ExceptionReportView(ExceptionReportInfo reportInfo)
        {
            ShowFullDetail = true;
            InitializeComponent();
            TopMost = reportInfo.TopMost;

            _presenter = new ExceptionReportPresenter(this, reportInfo);

            WireUpEvents();
            PopulateTabs();
            PopulateReportInfo(reportInfo);
        }
示例#5
0
        public ExceptionReportView(ExceptionReportInfo reportInfo)
        {
            ShowFullDetail = true;
            InitializeComponent();

            _presenter = new ExceptionReportPresenter(this, reportInfo)
            {
                Clipboard = new WinFormsClipboard()
            };

            WireUpEvents();
            PopulateTabs();
            PopulateReportInfo(reportInfo);
        }
        public ExceptionReportView(ExceptionReportInfo reportInfo)
        {
            ShowFullDetail = true;
            InitializeComponent();

            _presenter = new ExceptionReportPresenter(this, reportInfo)
                             {
                                 Clipboard = new WinFormsClipboard()
                             };

            WireUpEvents();
            PopulateTabs();
            PopulateReportInfo(reportInfo);
        }
示例#7
0
        public ReportSender(ExceptionReportPresenter report)
        {
            this._report = report;

            InitializeComponent();
        }