namespace Common
{
partial class FormFind
{
///
/// 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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormFind));
this.buttonFindNext = new System.Windows.Forms.Button();
this.buttonCancel = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.checkBoxMatchWholeWordOnly = new System.Windows.Forms.CheckBox();
this.checkBoxMatchCase = new System.Windows.Forms.CheckBox();
this.buttonFindPrevious = new System.Windows.Forms.Button();
this.comboBoxWhat = new Common.ComboBoxEx();
this.SuspendLayout();
//
// buttonFindNext
//
this.buttonFindNext.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.buttonFindNext.Location = new System.Drawing.Point(468, 19);
this.buttonFindNext.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.buttonFindNext.Name = "buttonFindNext";
this.buttonFindNext.Size = new System.Drawing.Size(132, 35);
this.buttonFindNext.TabIndex = 4;
this.buttonFindNext.Text = "Find next";
this.buttonFindNext.UseVisualStyleBackColor = true;
this.buttonFindNext.Click += new System.EventHandler(this.buttonFindNext_Click);
//
// buttonCancel
//
this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.buttonCancel.Location = new System.Drawing.Point(468, 108);
this.buttonCancel.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(130, 35);
this.buttonCancel.TabIndex = 6;
this.buttonCancel.Text = "Cancel";
this.buttonCancel.UseVisualStyleBackColor = true;
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(18, 26);
this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(82, 20);
this.label1.TabIndex = 0;
this.label1.Text = "Find what:";
//
// checkBoxMatchWholeWordOnly
//
this.checkBoxMatchWholeWordOnly.AutoSize = true;
this.checkBoxMatchWholeWordOnly.Location = new System.Drawing.Point(22, 72);
this.checkBoxMatchWholeWordOnly.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.checkBoxMatchWholeWordOnly.Name = "checkBoxMatchWholeWordOnly";
this.checkBoxMatchWholeWordOnly.Size = new System.Drawing.Size(194, 24);
this.checkBoxMatchWholeWordOnly.TabIndex = 2;
this.checkBoxMatchWholeWordOnly.Text = "Match whole word only";
this.checkBoxMatchWholeWordOnly.UseVisualStyleBackColor = true;
//
// checkBoxMatchCase
//
this.checkBoxMatchCase.AutoSize = true;
this.checkBoxMatchCase.Location = new System.Drawing.Point(22, 108);
this.checkBoxMatchCase.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.checkBoxMatchCase.Name = "checkBoxMatchCase";
this.checkBoxMatchCase.Size = new System.Drawing.Size(117, 24);
this.checkBoxMatchCase.TabIndex = 3;
this.checkBoxMatchCase.Text = "Match case";
this.checkBoxMatchCase.UseVisualStyleBackColor = true;
//
// buttonFindPrevious
//
this.buttonFindPrevious.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.buttonFindPrevious.Location = new System.Drawing.Point(468, 62);
this.buttonFindPrevious.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.buttonFindPrevious.Name = "buttonFindPrevious";
this.buttonFindPrevious.Size = new System.Drawing.Size(130, 35);
this.buttonFindPrevious.TabIndex = 5;
this.buttonFindPrevious.Text = "Find previous";
this.buttonFindPrevious.UseVisualStyleBackColor = true;
this.buttonFindPrevious.Click += new System.EventHandler(this.buttonFindPrevious_Click);
//
// comboBoxWhat
//
this.comboBoxWhat.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.comboBoxWhat.FormattingEnabled = true;
this.comboBoxWhat.Location = new System.Drawing.Point(107, 22);
this.comboBoxWhat.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.comboBoxWhat.Name = "comboBoxWhat";
this.comboBoxWhat.Size = new System.Drawing.Size(346, 28);
this.comboBoxWhat.TabIndex = 7;
this.comboBoxWhat.TextChanged += new System.EventHandler(this.textBoxWhat_TextChanged);
this.comboBoxWhat.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxWhat_KeyPress);
//
// FormFind
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(616, 175);
this.Controls.Add(this.comboBoxWhat);
this.Controls.Add(this.buttonFindPrevious);
this.Controls.Add(this.checkBoxMatchCase);
this.Controls.Add(this.checkBoxMatchWholeWordOnly);
this.Controls.Add(this.label1);
this.Controls.Add(this.buttonCancel);
this.Controls.Add(this.buttonFindNext);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(440, 189);
this.Name = "FormFind";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Find";
this.TopMost = true;
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormFind_FormClosing);
this.Load += new System.EventHandler(this.FormFind_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button buttonFindNext;
private System.Windows.Forms.Button buttonCancel;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.CheckBox checkBoxMatchWholeWordOnly;
private System.Windows.Forms.CheckBox checkBoxMatchCase;
private System.Windows.Forms.Button buttonFindPrevious;
private Common.ComboBoxEx comboBoxWhat;
}
}