namespace JimBlackler.ExceptionDialog { partial class AdvancedExceptionDialog { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.closeButton = new System.Windows.Forms.Button(); this.messageTextBox = new System.Windows.Forms.TextBox(); this.messageGroupBox = new System.Windows.Forms.GroupBox(); this.stackTraceGroupBox = new System.Windows.Forms.GroupBox(); this.stackTraceTextBox = new System.Windows.Forms.TextBox(); this.viewInnerExceptionButton = new System.Windows.Forms.Button(); this.messageGroupBox.SuspendLayout(); this.stackTraceGroupBox.SuspendLayout(); this.SuspendLayout(); // // closeButton // this.closeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.closeButton.Location = new System.Drawing.Point(370, 339); this.closeButton.Name = "closeButton"; this.closeButton.Size = new System.Drawing.Size(75, 23); this.closeButton.TabIndex = 0; this.closeButton.Text = "Close"; this.closeButton.UseVisualStyleBackColor = true; this.closeButton.Click += new System.EventHandler(this.closeButton_Click); // // messageTextBox // this.messageTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None; this.messageTextBox.Dock = System.Windows.Forms.DockStyle.Fill; this.messageTextBox.Location = new System.Drawing.Point(3, 16); this.messageTextBox.Multiline = true; this.messageTextBox.Name = "messageTextBox"; this.messageTextBox.ReadOnly = true; this.messageTextBox.Size = new System.Drawing.Size(426, 102); this.messageTextBox.TabIndex = 3; // // messageGroupBox // this.messageGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.messageGroupBox.Controls.Add(this.messageTextBox); this.messageGroupBox.Location = new System.Drawing.Point(13, 12); this.messageGroupBox.Name = "messageGroupBox"; this.messageGroupBox.Size = new System.Drawing.Size(432, 121); this.messageGroupBox.TabIndex = 4; this.messageGroupBox.TabStop = false; this.messageGroupBox.Text = "Message"; // // stackTraceGroupBox // this.stackTraceGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.stackTraceGroupBox.Controls.Add(this.stackTraceTextBox); this.stackTraceGroupBox.Location = new System.Drawing.Point(13, 139); this.stackTraceGroupBox.Name = "stackTraceGroupBox"; this.stackTraceGroupBox.Size = new System.Drawing.Size(433, 194); this.stackTraceGroupBox.TabIndex = 5; this.stackTraceGroupBox.TabStop = false; this.stackTraceGroupBox.Text = "Stack Trace"; // // stackTraceTextBox // this.stackTraceTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None; this.stackTraceTextBox.Dock = System.Windows.Forms.DockStyle.Fill; this.stackTraceTextBox.Location = new System.Drawing.Point(3, 16); this.stackTraceTextBox.Multiline = true; this.stackTraceTextBox.Name = "stackTraceTextBox"; this.stackTraceTextBox.ReadOnly = true; this.stackTraceTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.stackTraceTextBox.Size = new System.Drawing.Size(427, 175); this.stackTraceTextBox.TabIndex = 4; // // viewInnerExceptionButton // this.viewInnerExceptionButton.Location = new System.Drawing.Point(12, 339); this.viewInnerExceptionButton.Name = "viewInnerExceptionButton"; this.viewInnerExceptionButton.Size = new System.Drawing.Size(124, 23); this.viewInnerExceptionButton.TabIndex = 6; this.viewInnerExceptionButton.Text = "View Inner Exception"; this.viewInnerExceptionButton.UseVisualStyleBackColor = true; this.viewInnerExceptionButton.Click += new System.EventHandler(this.button1_Click); // // AdvancedExceptionDialog // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(457, 374); this.Controls.Add(this.viewInnerExceptionButton); this.Controls.Add(this.stackTraceGroupBox); this.Controls.Add(this.messageGroupBox); this.Controls.Add(this.closeButton); this.Name = "AdvancedExceptionDialog"; this.Text = "Advanced Exception Information"; this.messageGroupBox.ResumeLayout(false); this.messageGroupBox.PerformLayout(); this.stackTraceGroupBox.ResumeLayout(false); this.stackTraceGroupBox.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Button closeButton; private System.Windows.Forms.TextBox messageTextBox; private System.Windows.Forms.GroupBox messageGroupBox; private System.Windows.Forms.GroupBox stackTraceGroupBox; private System.Windows.Forms.TextBox stackTraceTextBox; private System.Windows.Forms.Button viewInnerExceptionButton; } }