1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using System;
- using System.Windows.Forms;
- using FastReport.Utils;
- namespace FastReport.Forms
- {
- /// <summary>
- /// Represents the FastReport exception form.
- /// </summary>
- public partial class ExceptionForm : BaseDialogForm
- {
- private void ExceptionForm_Shown(object sender, EventArgs e)
- {
- lblException.Width = ClientSize.Width - lblException.Left * 2;
- }
- private void btnCopyToClipboard_Click(object sender, EventArgs e)
- {
- string text = "FastReport.Net v" + Config.Version + "\r\n";
- text += lblException.Text + "\r\n";
- text += tbStack.Text;
- Clipboard.SetText(text);
- }
- /// <inheritdoc/>
- public override void Localize()
- {
- base.Localize();
- MyRes res = new MyRes("Forms,Exception");
- Text = res.Get("");
- lblHint.Text = res.Get("Hint");
- lblStack.Text = res.Get("Stack");
- btnCopyToClipboard.Text = res.Get("Copy");
- }
- /// <summary>
- /// Creates a new instance ofthe form.
- /// </summary>
- /// <param name="ex">The exception object which data to display in the form.</param>
- public ExceptionForm(Exception ex)
- {
- InitializeComponent();
- Localize();
- UIUtils.CheckRTL(this);
- lblException.Text = ex.Message;
- tbStack.Text = ex.StackTrace;
- if (ex.InnerException != null)
- {
- lblException.Text += "\r\nInner exception:\r\n" + ex.InnerException.Message;
- tbStack.Text = ex.InnerException.StackTrace + "\r\n" + tbStack.Text;
- }
- }
- }
- }
|