namespace MiniSqlQuery.PlugIns.SearchTools
{
partial class FindReplaceForm
{
/// <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.label1 = new System.Windows.Forms.Label();
this.txtFindString = new System.Windows.Forms.TextBox();
this.btnFindNext = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.txtReplaceText = new System.Windows.Forms.TextBox();
this.btnReplace = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 14);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(35, 12);
this.label1.TabIndex = 0;
this.label1.Text = "&S查找";
//
// txtFindString
//
this.txtFindString.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtFindString.Location = new System.Drawing.Point(95, 11);
this.txtFindString.Name = "txtFindString";
this.txtFindString.Size = new System.Drawing.Size(222, 21);
this.txtFindString.TabIndex = 1;
this.txtFindString.Enter += new System.EventHandler(this.txtFindString_Enter);
this.txtFindString.Leave += new System.EventHandler(this.txtFindString_Leave);
//
// btnFindNext
//
this.btnFindNext.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnFindNext.Location = new System.Drawing.Point(161, 59);
this.btnFindNext.Name = "btnFindNext";
this.btnFindNext.Size = new System.Drawing.Size(75, 21);
this.btnFindNext.TabIndex = 10;
this.btnFindNext.Text = "&F查下一个";
this.btnFindNext.UseVisualStyleBackColor = true;
this.btnFindNext.Click += new System.EventHandler(this.btnFindNext_Click);
//
// btnCancel
//
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(242, 86);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 21);
this.btnCancel.TabIndex = 12;
this.btnCancel.Text = "&C取消";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// txtReplaceText
//
this.txtReplaceText.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtReplaceText.Location = new System.Drawing.Point(95, 35);
this.txtReplaceText.Name = "txtReplaceText";
this.txtReplaceText.Size = new System.Drawing.Size(222, 21);
this.txtReplaceText.TabIndex = 3;
this.txtReplaceText.Enter += new System.EventHandler(this.txtFindString_Enter);
this.txtReplaceText.Leave += new System.EventHandler(this.txtFindString_Leave);
//
// btnReplace
//
this.btnReplace.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnReplace.Location = new System.Drawing.Point(242, 59);
this.btnReplace.Name = "btnReplace";
this.btnReplace.Size = new System.Drawing.Size(75, 21);
this.btnReplace.TabIndex = 11;
this.btnReplace.Text = "&R替换";
this.btnReplace.UseVisualStyleBackColor = true;
this.btnReplace.Click += new System.EventHandler(this.btnReplace_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 38);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(35, 12);
this.label2.TabIndex = 2;
this.label2.Text = "&R替换";
//
// FindReplaceForm
//
this.AcceptButton = this.btnFindNext;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(329, 114);
this.Controls.Add(this.label2);
this.Controls.Add(this.btnReplace);
this.Controls.Add(this.txtReplaceText);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnFindNext);
this.Controls.Add(this.txtFindString);
this.Controls.Add(this.label1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
this.MinimumSize = new System.Drawing.Size(320, 105);
this.Name = "FindReplaceForm";
this.Opacity = 0.8D;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "查找文本";
this.Activated += new System.EventHandler(this.FindReplaceForm_Activated);
this.Deactivate += new System.EventHandler(this.FindReplaceForm_Deactivate);
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FindReplaceForm_FormClosing);
this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.FindReplaceForm_KeyUp);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txtFindString;
private System.Windows.Forms.Button btnFindNext;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.TextBox txtReplaceText;
private System.Windows.Forms.Button btnReplace;
private System.Windows.Forms.Label label2;
}
}
|