149 lines
5.8 KiB
C#
149 lines
5.8 KiB
C#
namespace BizHawk.Client.EmuHawk
|
|
{
|
|
partial class ExceptionBox
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.components = new System.ComponentModel.Container();
|
|
this.btnOK = new System.Windows.Forms.Button();
|
|
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|
this.txtException = new System.Windows.Forms.TextBox();
|
|
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
|
|
this.btnCopy = new System.Windows.Forms.Button();
|
|
this.lblDone = new BizHawk.Client.EmuHawk.ExceptionBox.MyLabel();
|
|
this.timer1 = new System.Windows.Forms.Timer(this.components);
|
|
this.tableLayoutPanel1.SuspendLayout();
|
|
this.flowLayoutPanel1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// btnOK
|
|
//
|
|
this.btnOK.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.btnOK.Location = new System.Drawing.Point(625, 304);
|
|
this.btnOK.Name = "btnOK";
|
|
this.btnOK.Size = new System.Drawing.Size(75, 23);
|
|
this.btnOK.TabIndex = 0;
|
|
this.btnOK.Text = "OK";
|
|
this.btnOK.UseVisualStyleBackColor = true;
|
|
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
|
//
|
|
// tableLayoutPanel1
|
|
//
|
|
this.tableLayoutPanel1.ColumnCount = 2;
|
|
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
|
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
|
|
this.tableLayoutPanel1.Controls.Add(this.btnOK, 1, 1);
|
|
this.tableLayoutPanel1.Controls.Add(this.txtException, 0, 0);
|
|
this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel1, 0, 1);
|
|
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
|
|
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|
this.tableLayoutPanel1.RowCount = 2;
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
|
|
this.tableLayoutPanel1.Size = new System.Drawing.Size(703, 330);
|
|
this.tableLayoutPanel1.TabIndex = 1;
|
|
//
|
|
// txtException
|
|
//
|
|
this.tableLayoutPanel1.SetColumnSpan(this.txtException, 2);
|
|
this.txtException.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.txtException.Location = new System.Drawing.Point(3, 3);
|
|
this.txtException.Multiline = true;
|
|
this.txtException.Name = "txtException";
|
|
this.txtException.ReadOnly = true;
|
|
this.txtException.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
|
this.txtException.Size = new System.Drawing.Size(697, 295);
|
|
this.txtException.TabIndex = 1;
|
|
//
|
|
// flowLayoutPanel1
|
|
//
|
|
this.flowLayoutPanel1.AutoSize = true;
|
|
this.flowLayoutPanel1.Controls.Add(this.btnCopy);
|
|
this.flowLayoutPanel1.Controls.Add(this.lblDone);
|
|
this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 301);
|
|
this.flowLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
|
|
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
|
|
this.flowLayoutPanel1.Size = new System.Drawing.Size(87, 29);
|
|
this.flowLayoutPanel1.TabIndex = 2;
|
|
//
|
|
// btnCopy
|
|
//
|
|
this.btnCopy.Location = new System.Drawing.Point(3, 3);
|
|
this.btnCopy.Name = "btnCopy";
|
|
this.btnCopy.Size = new System.Drawing.Size(75, 23);
|
|
this.btnCopy.TabIndex = 3;
|
|
this.btnCopy.Text = "Copy";
|
|
this.btnCopy.UseVisualStyleBackColor = true;
|
|
this.btnCopy.Click += new System.EventHandler(this.btnCopy_Click);
|
|
//
|
|
// lblDone
|
|
//
|
|
this.lblDone.AutoSize = true;
|
|
this.lblDone.Location = new System.Drawing.Point(84, 10);
|
|
this.lblDone.Margin = new System.Windows.Forms.Padding(3, 10, 3, 0);
|
|
this.lblDone.Name = "lblDone";
|
|
this.lblDone.Size = new System.Drawing.Size(0, 13);
|
|
this.lblDone.TabIndex = 4;
|
|
//
|
|
// timer1
|
|
//
|
|
this.timer1.Enabled = true;
|
|
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
|
|
//
|
|
// ExceptionBox
|
|
//
|
|
this.AcceptButton = this.btnOK;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.CancelButton = this.btnOK;
|
|
this.ClientSize = new System.Drawing.Size(703, 330);
|
|
this.Controls.Add(this.tableLayoutPanel1);
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "ExceptionBox";
|
|
this.Text = "Exception";
|
|
this.tableLayoutPanel1.ResumeLayout(false);
|
|
this.tableLayoutPanel1.PerformLayout();
|
|
this.flowLayoutPanel1.ResumeLayout(false);
|
|
this.flowLayoutPanel1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button btnOK;
|
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
|
private System.Windows.Forms.TextBox txtException;
|
|
private System.Windows.Forms.Timer timer1;
|
|
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
|
|
private System.Windows.Forms.Button btnCopy;
|
|
private ExceptionBox.MyLabel lblDone;
|
|
}
|
|
} |