frmFind.Designer.cs
上传用户:jsz11269
上传日期:2017-01-14
资源大小:450k
文件大小:5k
- namespace myWorkPad
- {
- partial class frmFind
- {
- /// <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()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmFind));
- this.Label1 = new System.Windows.Forms.Label();
- this.txtSearchTerm = new System.Windows.Forms.TextBox();
- this.chkMatchCase = new System.Windows.Forms.CheckBox();
- this.btnFind = new System.Windows.Forms.Button();
- this.btnFindNext = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // Label1
- //
- this.Label1.AutoSize = true;
- this.Label1.Location = new System.Drawing.Point(23, 24);
- this.Label1.Name = "Label1";
- this.Label1.Size = new System.Drawing.Size(59, 12);
- this.Label1.TabIndex = 1;
- this.Label1.Text = "查找内容:";
- //
- // txtSearchTerm
- //
- this.txtSearchTerm.Location = new System.Drawing.Point(26, 39);
- this.txtSearchTerm.Name = "txtSearchTerm";
- this.txtSearchTerm.Size = new System.Drawing.Size(252, 21);
- this.txtSearchTerm.TabIndex = 2;
- this.txtSearchTerm.TextChanged += new System.EventHandler(this.txtSearchTerm_TextChanged);
- //
- // chkMatchCase
- //
- this.chkMatchCase.AutoSize = true;
- this.chkMatchCase.Location = new System.Drawing.Point(26, 67);
- this.chkMatchCase.Name = "chkMatchCase";
- this.chkMatchCase.Size = new System.Drawing.Size(84, 16);
- this.chkMatchCase.TabIndex = 5;
- this.chkMatchCase.Text = "区分大小写";
- this.chkMatchCase.UseVisualStyleBackColor = true;
- //
- // btnFind
- //
- this.btnFind.Location = new System.Drawing.Point(311, 39);
- this.btnFind.Name = "btnFind";
- this.btnFind.Size = new System.Drawing.Size(75, 19);
- this.btnFind.TabIndex = 6;
- this.btnFind.Text = "查找";
- this.btnFind.UseVisualStyleBackColor = true;
- this.btnFind.Click += new System.EventHandler(this.btnFind_Click);
- //
- // btnFindNext
- //
- this.btnFindNext.Enabled = false;
- this.btnFindNext.Location = new System.Drawing.Point(311, 67);
- this.btnFindNext.Name = "btnFindNext";
- this.btnFindNext.Size = new System.Drawing.Size(75, 19);
- this.btnFindNext.TabIndex = 7;
- this.btnFindNext.Text = "下一个";
- this.btnFindNext.UseVisualStyleBackColor = true;
- this.btnFindNext.Click += new System.EventHandler(this.btnFindNext_Click);
- //
- // frmFind
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(398, 103);
- this.Controls.Add(this.btnFindNext);
- this.Controls.Add(this.btnFind);
- this.Controls.Add(this.chkMatchCase);
- this.Controls.Add(this.txtSearchTerm);
- this.Controls.Add(this.Label1);
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Name = "frmFind";
- this.Text = "查找";
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- internal System.Windows.Forms.Label Label1;
- internal System.Windows.Forms.TextBox txtSearchTerm;
- internal System.Windows.Forms.CheckBox chkMatchCase;
- internal System.Windows.Forms.Button btnFind;
- internal System.Windows.Forms.Button btnFindNext;
- }
- }