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

Email服务器

开发平台:

C#

  1. namespace myWorkPad
  2. {
  3.     partial class frmReplace
  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(frmReplace));
  29.             this.Label1 = new System.Windows.Forms.Label();
  30.             this.txtSearchTerm = new System.Windows.Forms.TextBox();
  31.             this.Label2 = new System.Windows.Forms.Label();
  32.             this.txtReplacementText = new System.Windows.Forms.TextBox();
  33.             this.chkMatchCase = new System.Windows.Forms.CheckBox();
  34.             this.btnFind = new System.Windows.Forms.Button();
  35.             this.btnFindNext = new System.Windows.Forms.Button();
  36.             this.btnReplace = new System.Windows.Forms.Button();
  37.             this.btnReplaceAll = new System.Windows.Forms.Button();
  38.             this.SuspendLayout();
  39.             // 
  40.             // Label1
  41.             // 
  42.             this.Label1.AutoSize = true;
  43.             this.Label1.Location = new System.Drawing.Point(8, 17);
  44.             this.Label1.Name = "Label1";
  45.             this.Label1.Size = new System.Drawing.Size(59, 12);
  46.             this.Label1.TabIndex = 6;
  47.             this.Label1.Text = "查找内容:";
  48.             // 
  49.             // txtSearchTerm
  50.             // 
  51.             this.txtSearchTerm.Location = new System.Drawing.Point(10, 31);
  52.             this.txtSearchTerm.Name = "txtSearchTerm";
  53.             this.txtSearchTerm.Size = new System.Drawing.Size(321, 21);
  54.             this.txtSearchTerm.TabIndex = 7;
  55.             this.txtSearchTerm.TextChanged += new System.EventHandler(this.txtSearchTerm_TextChanged);
  56.             // 
  57.             // Label2
  58.             // 
  59.             this.Label2.AutoSize = true;
  60.             this.Label2.Location = new System.Drawing.Point(8, 66);
  61.             this.Label2.Name = "Label2";
  62.             this.Label2.Size = new System.Drawing.Size(47, 12);
  63.             this.Label2.TabIndex = 11;
  64.             this.Label2.Text = "替换为:";
  65.             // 
  66.             // txtReplacementText
  67.             // 
  68.             this.txtReplacementText.Location = new System.Drawing.Point(10, 80);
  69.             this.txtReplacementText.Name = "txtReplacementText";
  70.             this.txtReplacementText.Size = new System.Drawing.Size(320, 21);
  71.             this.txtReplacementText.TabIndex = 12;
  72.             // 
  73.             // chkMatchCase
  74.             // 
  75.             this.chkMatchCase.AutoSize = true;
  76.             this.chkMatchCase.Location = new System.Drawing.Point(10, 104);
  77.             this.chkMatchCase.Name = "chkMatchCase";
  78.             this.chkMatchCase.Size = new System.Drawing.Size(84, 16);
  79.             this.chkMatchCase.TabIndex = 13;
  80.             this.chkMatchCase.Text = "区分大小写";
  81.             this.chkMatchCase.UseVisualStyleBackColor = true;
  82.             // 
  83.             // btnFind
  84.             // 
  85.             this.btnFind.Location = new System.Drawing.Point(11, 138);
  86.             this.btnFind.Name = "btnFind";
  87.             this.btnFind.Size = new System.Drawing.Size(75, 19);
  88.             this.btnFind.TabIndex = 14;
  89.             this.btnFind.Text = "查找";
  90.             this.btnFind.UseVisualStyleBackColor = true;
  91.             this.btnFind.Click += new System.EventHandler(this.btnFind_Click);
  92.             // 
  93.             // btnFindNext
  94.             // 
  95.             this.btnFindNext.Enabled = false;
  96.             this.btnFindNext.Location = new System.Drawing.Point(92, 138);
  97.             this.btnFindNext.Name = "btnFindNext";
  98.             this.btnFindNext.Size = new System.Drawing.Size(75, 19);
  99.             this.btnFindNext.TabIndex = 15;
  100.             this.btnFindNext.Text = "查找下一个";
  101.             this.btnFindNext.UseVisualStyleBackColor = true;
  102.             this.btnFindNext.Click += new System.EventHandler(this.btnFindNext_Click);
  103.             // 
  104.             // btnReplace
  105.             // 
  106.             this.btnReplace.Location = new System.Drawing.Point(173, 138);
  107.             this.btnReplace.Name = "btnReplace";
  108.             this.btnReplace.Size = new System.Drawing.Size(75, 19);
  109.             this.btnReplace.TabIndex = 16;
  110.             this.btnReplace.Text = "替换";
  111.             this.btnReplace.UseVisualStyleBackColor = true;
  112.             this.btnReplace.Click += new System.EventHandler(this.btnReplace_Click);
  113.             // 
  114.             // btnReplaceAll
  115.             // 
  116.             this.btnReplaceAll.Location = new System.Drawing.Point(254, 138);
  117.             this.btnReplaceAll.Name = "btnReplaceAll";
  118.             this.btnReplaceAll.Size = new System.Drawing.Size(75, 19);
  119.             this.btnReplaceAll.TabIndex = 17;
  120.             this.btnReplaceAll.Text = "全部替换";
  121.             this.btnReplaceAll.UseVisualStyleBackColor = true;
  122.             this.btnReplaceAll.Click += new System.EventHandler(this.btnReplaceAll_Click);
  123.             // 
  124.             // frmReplace
  125.             // 
  126.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  127.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  128.             this.ClientSize = new System.Drawing.Size(343, 174);
  129.             this.Controls.Add(this.btnReplaceAll);
  130.             this.Controls.Add(this.btnReplace);
  131.             this.Controls.Add(this.btnFindNext);
  132.             this.Controls.Add(this.btnFind);
  133.             this.Controls.Add(this.chkMatchCase);
  134.             this.Controls.Add(this.txtReplacementText);
  135.             this.Controls.Add(this.Label2);
  136.             this.Controls.Add(this.txtSearchTerm);
  137.             this.Controls.Add(this.Label1);
  138.             this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  139.             this.Name = "frmReplace";
  140.             this.Text = "替换";
  141.             this.ResumeLayout(false);
  142.             this.PerformLayout();
  143.         }
  144.         #endregion
  145.         internal System.Windows.Forms.Label Label1;
  146.         internal System.Windows.Forms.TextBox txtSearchTerm;
  147.         internal System.Windows.Forms.Label Label2;
  148.         internal System.Windows.Forms.TextBox txtReplacementText;
  149.         internal System.Windows.Forms.CheckBox chkMatchCase;
  150.         internal System.Windows.Forms.Button btnFind;
  151.         internal System.Windows.Forms.Button btnFindNext;
  152.         internal System.Windows.Forms.Button btnReplace;
  153.         internal System.Windows.Forms.Button btnReplaceAll;
  154.     }
  155. }