using System.Windows.Forms;
namespace AutoTypeSearch
{
partial class SearchWindow
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
#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.mSearch = new System.Windows.Forms.TextBox();
this.mResults = new System.Windows.Forms.ListBox();
this.mLayout = new System.Windows.Forms.TableLayoutPanel();
this.mBanner = new System.Windows.Forms.PictureBox();
this.mInfoBanner = new System.Windows.Forms.Panel();
this.mInfoLabel = new System.Windows.Forms.Label();
this.mInfoBannerImage = new System.Windows.Forms.PictureBox();
this.mSeq = new AutoTypeSearch.WatermarkTextBox();
this.mThrobber = new System.Windows.Forms.PictureBox();
this.mResultsUpdater = new System.Windows.Forms.Timer(this.components);
this.mNoResultsLabel = new System.Windows.Forms.Label();
this.mLayout.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.mBanner)).BeginInit();
this.mInfoBanner.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.mInfoBannerImage)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.mThrobber)).BeginInit();
this.SuspendLayout();
//
// mSearch
//
this.mSearch.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.mSearch.Location = new System.Drawing.Point(2, 121);
this.mSearch.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.mSearch.Name = "mSearch";
this.mSearch.Size = new System.Drawing.Size(780, 26);
this.mSearch.TabIndex = 0;
this.mSearch.LocationChanged += new System.EventHandler(this.mSearch_LocationChanged);
this.mSearch.TextChanged += new System.EventHandler(this.mSearch_TextChanged);
//
// mResults
//
this.mResults.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.mResults.Dock = System.Windows.Forms.DockStyle.Fill;
this.mResults.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
this.mResults.FormattingEnabled = true;
this.mResults.IntegralHeight = false;
this.mResults.Location = new System.Drawing.Point(0, 173);
this.mResults.Margin = new System.Windows.Forms.Padding(0);
this.mResults.Name = "mResults";
this.mResults.Size = new System.Drawing.Size(784, 249);
this.mResults.TabIndex = 1;
this.mResults.TabStop = false;
this.mResults.MouseClick += new System.Windows.Forms.MouseEventHandler(this.mResults_MouseClick);
this.mResults.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.mResults_DrawItem);
this.mResults.LocationChanged += new System.EventHandler(this.mResults_LocationChanged);
this.mResults.MouseEnter += new System.EventHandler(this.mResults_MouseEnter);
this.mResults.MouseMove += new System.Windows.Forms.MouseEventHandler(this.mResults_MouseMove);
//
// mLayout
//
this.mLayout.ColumnCount = 1;
this.mLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.mLayout.Controls.Add(this.mSearch, 0, 2);
this.mLayout.Controls.Add(this.mBanner, 0, 0);
this.mLayout.Controls.Add(this.mInfoBanner, 0, 1);
this.mLayout.Controls.Add(this.mResults, 0, 4);
this.mLayout.Controls.Add(this.mSeq, 0, 3);
this.mLayout.Dock = System.Windows.Forms.DockStyle.Fill;
this.mLayout.Location = new System.Drawing.Point(0, 0);
this.mLayout.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.mLayout.Name = "mLayout";
this.mLayout.RowCount = 5;
this.mLayout.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.mLayout.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.mLayout.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.mLayout.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.mLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.mLayout.Size = new System.Drawing.Size(784, 422);
this.mLayout.TabIndex = 2;
//
// mBanner
//
this.mBanner.Dock = System.Windows.Forms.DockStyle.Top;
this.mBanner.Location = new System.Drawing.Point(0, 0);
this.mBanner.Margin = new System.Windows.Forms.Padding(0);
this.mBanner.Name = "mBanner";
this.mBanner.Size = new System.Drawing.Size(784, 92);
this.mBanner.TabIndex = 3;
this.mBanner.TabStop = false;
this.mBanner.MouseDown += new System.Windows.Forms.MouseEventHandler(this.mBannerImage_MouseDown);
//
// mInfoBanner
//
this.mInfoBanner.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.mInfoBanner.BackColor = System.Drawing.SystemColors.Info;
this.mInfoBanner.Controls.Add(this.mInfoLabel);
this.mInfoBanner.Controls.Add(this.mInfoBannerImage);
this.mInfoBanner.Dock = System.Windows.Forms.DockStyle.Fill;
this.mInfoBanner.Location = new System.Drawing.Point(3, 94);
this.mInfoBanner.Margin = new System.Windows.Forms.Padding(3, 2, 2, 2);
this.mInfoBanner.Name = "mInfoBanner";
this.mInfoBanner.Size = new System.Drawing.Size(779, 25);
this.mInfoBanner.TabIndex = 8;
//
// mInfoLabel
//
this.mInfoLabel.AutoEllipsis = true;
this.mInfoLabel.Dock = System.Windows.Forms.DockStyle.Fill;
this.mInfoLabel.ForeColor = System.Drawing.SystemColors.InfoText;
this.mInfoLabel.Location = new System.Drawing.Point(24, 0);
this.mInfoLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.mInfoLabel.Name = "mInfoLabel";
this.mInfoLabel.Size = new System.Drawing.Size(755, 25);
this.mInfoLabel.TabIndex = 6;
this.mInfoLabel.Text = "AutoType failed to find";
//
// mInfoBannerImage
//
this.mInfoBannerImage.Dock = System.Windows.Forms.DockStyle.Left;
this.mInfoBannerImage.Image = global::AutoTypeSearch.Properties.Resources.Info;
this.mInfoBannerImage.Location = new System.Drawing.Point(0, 0);
this.mInfoBannerImage.Margin = new System.Windows.Forms.Padding(0);
this.mInfoBannerImage.Name = "mInfoBannerImage";
this.mInfoBannerImage.Size = new System.Drawing.Size(24, 25);
this.mInfoBannerImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.mInfoBannerImage.TabIndex = 7;
this.mInfoBannerImage.TabStop = false;
//
// mSeq
//
this.mSeq.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.mSeq.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
this.mSeq.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.CustomSource;
this.mSeq.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F);
this.mSeq.Location = new System.Drawing.Point(2, 147);
this.mSeq.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.mSeq.Name = "mSeq";
this.mSeq.Size = new System.Drawing.Size(780, 26);
this.mSeq.TabIndex = 9;
this.mSeq.WaterMarkColor = System.Drawing.Color.Gray;
this.mSeq.WaterMarkText = "Set Custom Sequence Here";
//
// mThrobber
//
this.mThrobber.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.mThrobber.BackColor = System.Drawing.SystemColors.Window;
this.mThrobber.Location = new System.Drawing.Point(754, 125);
this.mThrobber.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.mThrobber.Name = "mThrobber";
this.mThrobber.Size = new System.Drawing.Size(24, 25);
this.mThrobber.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.mThrobber.TabIndex = 4;
this.mThrobber.TabStop = false;
this.mThrobber.Visible = false;
//
// mResultsUpdater
//
this.mResultsUpdater.Interval = 250;
this.mResultsUpdater.Tick += new System.EventHandler(this.mResultsUpdater_Tick);
//
// mNoResultsLabel
//
this.mNoResultsLabel.AutoSize = true;
this.mNoResultsLabel.Location = new System.Drawing.Point(8, 183);
this.mNoResultsLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.mNoResultsLabel.Name = "mNoResultsLabel";
this.mNoResultsLabel.Size = new System.Drawing.Size(125, 20);
this.mNoResultsLabel.TabIndex = 5;
this.mNoResultsLabel.Text = "No results found";
//
// SearchWindow
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Window;
this.ClientSize = new System.Drawing.Size(784, 422);
this.ControlBox = false;
this.Controls.Add(this.mNoResultsLabel);
this.Controls.Add(this.mThrobber);
this.Controls.Add(this.mLayout);
this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.MinimumSize = new System.Drawing.Size(229, 136);
this.Name = "SearchWindow";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
this.TopMost = true;
this.mLayout.ResumeLayout(false);
this.mLayout.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.mBanner)).EndInit();
this.mInfoBanner.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.mInfoBannerImage)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.mThrobber)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox mSearch;
private System.Windows.Forms.ListBox mResults;
private System.Windows.Forms.TableLayoutPanel mLayout;
private System.Windows.Forms.PictureBox mBanner;
private PictureBox mThrobber;
private Timer mResultsUpdater;
private Label mNoResultsLabel;
private Label mInfoLabel;
private Panel mInfoBanner;
private PictureBox mInfoBannerImage;
private WatermarkTextBox mSeq;
}
}