152 lines
6.1 KiB
C#
152 lines
6.1 KiB
C#
|
namespace Mesen.GUI.Debugger
|
|||
|
{
|
|||
|
partial class frmGoToAll
|
|||
|
{
|
|||
|
/// <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.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|||
|
this.lblSearch = new System.Windows.Forms.Label();
|
|||
|
this.txtSearch = new System.Windows.Forms.TextBox();
|
|||
|
this.pnlResults = new System.Windows.Forms.Panel();
|
|||
|
this.tlpResults = new System.Windows.Forms.TableLayoutPanel();
|
|||
|
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
|
|||
|
this.lblResultCount = new System.Windows.Forms.ToolStripStatusLabel();
|
|||
|
this.tableLayoutPanel1.SuspendLayout();
|
|||
|
this.pnlResults.SuspendLayout();
|
|||
|
this.statusStrip1.SuspendLayout();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// tableLayoutPanel1
|
|||
|
//
|
|||
|
this.tableLayoutPanel1.ColumnCount = 2;
|
|||
|
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
|
|||
|
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
|||
|
this.tableLayoutPanel1.Controls.Add(this.lblSearch, 0, 0);
|
|||
|
this.tableLayoutPanel1.Controls.Add(this.txtSearch, 1, 0);
|
|||
|
this.tableLayoutPanel1.Controls.Add(this.pnlResults, 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());
|
|||
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
|||
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
|
|||
|
this.tableLayoutPanel1.Size = new System.Drawing.Size(386, 417);
|
|||
|
this.tableLayoutPanel1.TabIndex = 0;
|
|||
|
//
|
|||
|
// lblSearch
|
|||
|
//
|
|||
|
this.lblSearch.Anchor = System.Windows.Forms.AnchorStyles.Left;
|
|||
|
this.lblSearch.AutoSize = true;
|
|||
|
this.lblSearch.Location = new System.Drawing.Point(3, 6);
|
|||
|
this.lblSearch.Name = "lblSearch";
|
|||
|
this.lblSearch.Size = new System.Drawing.Size(44, 13);
|
|||
|
this.lblSearch.TabIndex = 0;
|
|||
|
this.lblSearch.Text = "Search:";
|
|||
|
//
|
|||
|
// txtSearch
|
|||
|
//
|
|||
|
this.txtSearch.Dock = System.Windows.Forms.DockStyle.Fill;
|
|||
|
this.txtSearch.Location = new System.Drawing.Point(53, 3);
|
|||
|
this.txtSearch.Name = "txtSearch";
|
|||
|
this.txtSearch.Size = new System.Drawing.Size(330, 20);
|
|||
|
this.txtSearch.TabIndex = 1;
|
|||
|
this.txtSearch.TextChanged += new System.EventHandler(this.txtSearch_TextChanged);
|
|||
|
//
|
|||
|
// pnlResults
|
|||
|
//
|
|||
|
this.pnlResults.AutoScroll = true;
|
|||
|
this.pnlResults.BackColor = System.Drawing.SystemColors.ControlDarkDark;
|
|||
|
this.pnlResults.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|||
|
this.tableLayoutPanel1.SetColumnSpan(this.pnlResults, 2);
|
|||
|
this.pnlResults.Controls.Add(this.tlpResults);
|
|||
|
this.pnlResults.Dock = System.Windows.Forms.DockStyle.Fill;
|
|||
|
this.pnlResults.Location = new System.Drawing.Point(3, 29);
|
|||
|
this.pnlResults.Name = "pnlResults";
|
|||
|
this.pnlResults.Size = new System.Drawing.Size(380, 385);
|
|||
|
this.pnlResults.TabIndex = 2;
|
|||
|
//
|
|||
|
// tlpResults
|
|||
|
//
|
|||
|
this.tlpResults.BackColor = System.Drawing.Color.Transparent;
|
|||
|
this.tlpResults.ColumnCount = 1;
|
|||
|
this.tlpResults.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
|||
|
this.tlpResults.Location = new System.Drawing.Point(0, 0);
|
|||
|
this.tlpResults.Name = "tlpResults";
|
|||
|
this.tlpResults.RowCount = 1;
|
|||
|
this.tlpResults.RowStyles.Add(new System.Windows.Forms.RowStyle());
|
|||
|
this.tlpResults.Size = new System.Drawing.Size(361, 457);
|
|||
|
this.tlpResults.TabIndex = 0;
|
|||
|
//
|
|||
|
// statusStrip1
|
|||
|
//
|
|||
|
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|||
|
this.lblResultCount});
|
|||
|
this.statusStrip1.Location = new System.Drawing.Point(0, 417);
|
|||
|
this.statusStrip1.Name = "statusStrip1";
|
|||
|
this.statusStrip1.Size = new System.Drawing.Size(386, 22);
|
|||
|
this.statusStrip1.SizingGrip = false;
|
|||
|
this.statusStrip1.TabIndex = 1;
|
|||
|
this.statusStrip1.Text = "statusStrip1";
|
|||
|
//
|
|||
|
// lblResultCount
|
|||
|
//
|
|||
|
this.lblResultCount.Name = "lblResultCount";
|
|||
|
this.lblResultCount.Size = new System.Drawing.Size(54, 17);
|
|||
|
this.lblResultCount.Text = "xx results";
|
|||
|
//
|
|||
|
// frmGoToAll
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(386, 439);
|
|||
|
this.Controls.Add(this.tableLayoutPanel1);
|
|||
|
this.Controls.Add(this.statusStrip1);
|
|||
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
|||
|
this.Name = "frmGoToAll";
|
|||
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|||
|
this.Text = "Go to All";
|
|||
|
this.tableLayoutPanel1.ResumeLayout(false);
|
|||
|
this.tableLayoutPanel1.PerformLayout();
|
|||
|
this.pnlResults.ResumeLayout(false);
|
|||
|
this.statusStrip1.ResumeLayout(false);
|
|||
|
this.statusStrip1.PerformLayout();
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
|||
|
private System.Windows.Forms.Label lblSearch;
|
|||
|
private System.Windows.Forms.TextBox txtSearch;
|
|||
|
private System.Windows.Forms.Panel pnlResults;
|
|||
|
private System.Windows.Forms.TableLayoutPanel tlpResults;
|
|||
|
private System.Windows.Forms.StatusStrip statusStrip1;
|
|||
|
private System.Windows.Forms.ToolStripStatusLabel lblResultCount;
|
|||
|
}
|
|||
|
}
|