frmFind.Designer.cs
上传用户:jsz11269
上传日期:2017-01-14
资源大小:450k
文件大小:5k
源码类别:

Email服务器

开发平台:

C#

  1. namespace myWorkPad
  2. {
  3.     partial class frmFind
  4.     {
  5.         /// <summary>
  6.         /// Required designer variable.
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.         /// <summary>
  10.         /// Clean up any resources being used.
  11.         /// </summary>
  12.         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13.         protected override void Dispose(bool disposing)
  14.         {
  15.             if (disposing && (components != null))
  16.             {
  17.                 components.Dispose();
  18.             }
  19.             base.Dispose(disposing);
  20.         }
  21.         #region Windows Form Designer generated code
  22.         /// <summary>
  23.         /// Required method for Designer support - do not modify
  24.         /// the contents of this method with the code editor.
  25.         /// </summary>
  26.         private void InitializeComponent()
  27.         {
  28.             System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmFind));
  29.             this.Label1 = new System.Windows.Forms.Label();
  30.             this.txtSearchTerm = new System.Windows.Forms.TextBox();
  31.             this.chkMatchCase = new System.Windows.Forms.CheckBox();
  32.             this.btnFind = new System.Windows.Forms.Button();
  33.             this.btnFindNext = new System.Windows.Forms.Button();
  34.             this.SuspendLayout();
  35.             // 
  36.             // Label1
  37.             // 
  38.             this.Label1.AutoSize = true;
  39.             this.Label1.Location = new System.Drawing.Point(23, 24);
  40.             this.Label1.Name = "Label1";
  41.             this.Label1.Size = new System.Drawing.Size(59, 12);
  42.             this.Label1.TabIndex = 1;
  43.             this.Label1.Text = "查找内容:";
  44.             // 
  45.             // txtSearchTerm
  46.             // 
  47.             this.txtSearchTerm.Location = new System.Drawing.Point(26, 39);
  48.             this.txtSearchTerm.Name = "txtSearchTerm";
  49.             this.txtSearchTerm.Size = new System.Drawing.Size(252, 21);
  50.             this.txtSearchTerm.TabIndex = 2;
  51.             this.txtSearchTerm.TextChanged += new System.EventHandler(this.txtSearchTerm_TextChanged);
  52.             // 
  53.             // chkMatchCase
  54.             // 
  55.             this.chkMatchCase.AutoSize = true;
  56.             this.chkMatchCase.Location = new System.Drawing.Point(26, 67);
  57.             this.chkMatchCase.Name = "chkMatchCase";
  58.             this.chkMatchCase.Size = new System.Drawing.Size(84, 16);
  59.             this.chkMatchCase.TabIndex = 5;
  60.             this.chkMatchCase.Text = "区分大小写";
  61.             this.chkMatchCase.UseVisualStyleBackColor = true;
  62.             // 
  63.             // btnFind
  64.             // 
  65.             this.btnFind.Location = new System.Drawing.Point(311, 39);
  66.             this.btnFind.Name = "btnFind";
  67.             this.btnFind.Size = new System.Drawing.Size(75, 19);
  68.             this.btnFind.TabIndex = 6;
  69.             this.btnFind.Text = "查找";
  70.             this.btnFind.UseVisualStyleBackColor = true;
  71.             this.btnFind.Click += new System.EventHandler(this.btnFind_Click);
  72.             // 
  73.             // btnFindNext
  74.             // 
  75.             this.btnFindNext.Enabled = false;
  76.             this.btnFindNext.Location = new System.Drawing.Point(311, 67);
  77.             this.btnFindNext.Name = "btnFindNext";
  78.             this.btnFindNext.Size = new System.Drawing.Size(75, 19);
  79.             this.btnFindNext.TabIndex = 7;
  80.             this.btnFindNext.Text = "下一个";
  81.             this.btnFindNext.UseVisualStyleBackColor = true;
  82.             this.btnFindNext.Click += new System.EventHandler(this.btnFindNext_Click);
  83.             // 
  84.             // frmFind
  85.             // 
  86.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  87.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  88.             this.ClientSize = new System.Drawing.Size(398, 103);
  89.             this.Controls.Add(this.btnFindNext);
  90.             this.Controls.Add(this.btnFind);
  91.             this.Controls.Add(this.chkMatchCase);
  92.             this.Controls.Add(this.txtSearchTerm);
  93.             this.Controls.Add(this.Label1);
  94.             this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  95.             this.Name = "frmFind";
  96.             this.Text = "查找";
  97.             this.ResumeLayout(false);
  98.             this.PerformLayout();
  99.         }
  100.         #endregion
  101.         internal System.Windows.Forms.Label Label1;
  102.         internal System.Windows.Forms.TextBox txtSearchTerm;
  103.         internal System.Windows.Forms.CheckBox chkMatchCase;
  104.         internal System.Windows.Forms.Button btnFind;
  105.         internal System.Windows.Forms.Button btnFindNext;
  106.     }
  107. }