partial class FileSearchForm
{
///
/// 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.directoryLabel = new System.Windows.Forms.Label();
this.directionsLabel = new System.Windows.Forms.Label();
this.inputTextBox = new System.Windows.Forms.TextBox();
this.searchButton = new System.Windows.Forms.Button();
this.outputTextBox = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// directoryLabel
//
this.directoryLabel.AutoSize = true;
this.directoryLabel.Location = new System.Drawing.Point(31, 25);
this.directoryLabel.Name = "directoryLabel";
this.directoryLabel.Size = new System.Drawing.Size(0, 0);
this.directoryLabel.TabIndex = 0;
//
// directionsLabel
//
this.directionsLabel.AutoSize = true;
this.directionsLabel.Location = new System.Drawing.Point(31, 85);
this.directionsLabel.Name = "directionsLabel";
this.directionsLabel.Size = new System.Drawing.Size(105, 13);
this.directionsLabel.TabIndex = 1;
this.directionsLabel.Text = "Enter Path to Search:";
//
// inputTextBox
//
this.inputTextBox.Location = new System.Drawing.Point(32, 120);
this.inputTextBox.Name = "inputTextBox";
this.inputTextBox.Size = new System.Drawing.Size(273, 20);
this.inputTextBox.TabIndex = 2;
this.inputTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.inputTextBox_KeyDown);
//
// searchButton
//
this.searchButton.Location = new System.Drawing.Point(32, 157);
this.searchButton.Name = "searchButton";
this.searchButton.Size = new System.Drawing.Size(273, 38);
this.searchButton.TabIndex = 3;
this.searchButton.Text = "Search Directory";
this.searchButton.Click += new System.EventHandler(this.searchButton_Click);
//
// outputTextBox
//
this.outputTextBox.Location = new System.Drawing.Point(32, 201);
this.outputTextBox.Multiline = true;
this.outputTextBox.Name = "outputTextBox";
this.outputTextBox.Size = new System.Drawing.Size(270, 195);
this.outputTextBox.TabIndex = 4;
//
// FileSearchForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(332, 419);
this.Controls.Add(this.outputTextBox);
this.Controls.Add(this.searchButton);
this.Controls.Add(this.inputTextBox);
this.Controls.Add(this.directionsLabel);
this.Controls.Add(this.directoryLabel);
this.Name = "FileSearchForm";
this.Text = "Using Regular Expressions";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label directoryLabel;
private System.Windows.Forms.Label directionsLabel;
private System.Windows.Forms.TextBox inputTextBox;
private System.Windows.Forms.Button searchButton;
private System.Windows.Forms.TextBox outputTextBox;
}