コード例 #1
0
 public ExceptionReportView(params Exception[] e)
 {
     InitializeComponent();
     reportInfo.SetExceptions(e);
     //ShowFullDetail();
     ShowLastReportInfot(reportInfo);
     presenter = new ExceptionReportPresenter(reportInfo);
 }
コード例 #2
0
		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()
            };
        }
コード例 #4
0
        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);
        }
コード例 #6
0
        public ExceptionReportView(ExceptionReportInfo reportInfo)
        {
            ShowFullDetail = true;
            InitializeComponent();

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

            WireUpEvents();
            PopulateTabs();
            PopulateReportInfo(reportInfo);
        }
コード例 #7
0
ファイル: ReportSender.cs プロジェクト: modernstar/core
        public ReportSender(ExceptionReportPresenter report)
        {
            this._report = report;

            InitializeComponent();
        }