namespace LB_VisionControls
|
{
|
partial class FindForm
|
{
|
/// <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.btClose = new System.Windows.Forms.Button();
|
this.btFindNext = new System.Windows.Forms.Button();
|
this.tbFind = new System.Windows.Forms.TextBox();
|
this.cbRegex = new System.Windows.Forms.CheckBox();
|
this.cbMatchCase = new System.Windows.Forms.CheckBox();
|
this.label1 = new System.Windows.Forms.Label();
|
this.cbWholeWord = new System.Windows.Forms.CheckBox();
|
this.SuspendLayout();
|
//
|
// btClose
|
//
|
this.btClose.Location = new System.Drawing.Point(273, 66);
|
this.btClose.Name = "btClose";
|
this.btClose.Size = new System.Drawing.Size(75, 21);
|
this.btClose.TabIndex = 5;
|
this.btClose.Text = "关闭";
|
this.btClose.UseVisualStyleBackColor = true;
|
this.btClose.Click += new System.EventHandler(this.btClose_Click);
|
//
|
// btFindNext
|
//
|
this.btFindNext.Location = new System.Drawing.Point(192, 66);
|
this.btFindNext.Name = "btFindNext";
|
this.btFindNext.Size = new System.Drawing.Size(75, 21);
|
this.btFindNext.TabIndex = 4;
|
this.btFindNext.Text = "查找下一个";
|
this.btFindNext.UseVisualStyleBackColor = true;
|
this.btFindNext.Click += new System.EventHandler(this.btFindNext_Click);
|
//
|
// tbFind
|
//
|
this.tbFind.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
this.tbFind.Location = new System.Drawing.Point(42, 11);
|
this.tbFind.Name = "tbFind";
|
this.tbFind.Size = new System.Drawing.Size(306, 20);
|
this.tbFind.TabIndex = 0;
|
this.tbFind.TextChanged += new System.EventHandler(this.cbMatchCase_CheckedChanged);
|
this.tbFind.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tbFind_KeyPress);
|
//
|
// cbRegex
|
//
|
this.cbRegex.AutoSize = true;
|
this.cbRegex.Location = new System.Drawing.Point(213, 35);
|
this.cbRegex.Name = "cbRegex";
|
this.cbRegex.Size = new System.Drawing.Size(72, 16);
|
this.cbRegex.TabIndex = 3;
|
this.cbRegex.Text = "正则匹配";
|
this.cbRegex.UseVisualStyleBackColor = true;
|
this.cbRegex.CheckedChanged += new System.EventHandler(this.cbMatchCase_CheckedChanged);
|
//
|
// cbMatchCase
|
//
|
this.cbMatchCase.AutoSize = true;
|
this.cbMatchCase.Location = new System.Drawing.Point(42, 35);
|
this.cbMatchCase.Name = "cbMatchCase";
|
this.cbMatchCase.Size = new System.Drawing.Size(72, 16);
|
this.cbMatchCase.TabIndex = 1;
|
this.cbMatchCase.Text = "部分匹配";
|
this.cbMatchCase.UseVisualStyleBackColor = true;
|
this.cbMatchCase.CheckedChanged += new System.EventHandler(this.cbMatchCase_CheckedChanged);
|
//
|
// label1
|
//
|
this.label1.AutoSize = true;
|
this.label1.Location = new System.Drawing.Point(6, 14);
|
this.label1.Name = "label1";
|
this.label1.Size = new System.Drawing.Size(41, 12);
|
this.label1.TabIndex = 5;
|
this.label1.Text = "查找:";
|
//
|
// cbWholeWord
|
//
|
this.cbWholeWord.AutoSize = true;
|
this.cbWholeWord.Location = new System.Drawing.Point(130, 35);
|
this.cbWholeWord.Name = "cbWholeWord";
|
this.cbWholeWord.Size = new System.Drawing.Size(72, 16);
|
this.cbWholeWord.TabIndex = 2;
|
this.cbWholeWord.Text = "全文匹配";
|
this.cbWholeWord.UseVisualStyleBackColor = true;
|
this.cbWholeWord.CheckedChanged += new System.EventHandler(this.cbMatchCase_CheckedChanged);
|
//
|
// FindForm
|
//
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
this.ClientSize = new System.Drawing.Size(360, 95);
|
this.Controls.Add(this.tbFind);
|
this.Controls.Add(this.cbRegex);
|
this.Controls.Add(this.cbWholeWord);
|
this.Controls.Add(this.label1);
|
this.Controls.Add(this.cbMatchCase);
|
this.Controls.Add(this.btFindNext);
|
this.Controls.Add(this.btClose);
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
this.Name = "FindForm";
|
this.ShowIcon = false;
|
this.ShowInTaskbar = false;
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
this.Text = "查找";
|
this.TopMost = true;
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FindForm_FormClosing);
|
this.ResumeLayout(false);
|
this.PerformLayout();
|
|
}
|
|
#endregion
|
|
private System.Windows.Forms.Button btClose;
|
private System.Windows.Forms.Button btFindNext;
|
private System.Windows.Forms.CheckBox cbRegex;
|
private System.Windows.Forms.CheckBox cbMatchCase;
|
private System.Windows.Forms.Label label1;
|
private System.Windows.Forms.CheckBox cbWholeWord;
|
public System.Windows.Forms.TextBox tbFind;
|
}
|
}
|