查找和替换.Designer.cs
上传用户:hueiseng
上传日期:2022-07-26
资源大小:156k
文件大小:7k
源码类别:

C#编程

开发平台:

Visual C++

  1. namespace 笔记本
  2. {
  3.     partial class 查找
  4.     {
  5.         /// <summary>
  6.         /// 必需的设计器变量。
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.         /// <summary>
  10.         /// 清理所有正在使用的资源。
  11.         /// </summary>
  12.         /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 窗体设计器生成的代码
  22.         /// <summary>
  23.         /// 设计器支持所需的方法 - 不要
  24.         /// 使用代码编辑器修改此方法的内容。
  25.         /// </summary>
  26.         private void InitializeComponent()
  27.         {
  28.             this.button1 = new System.Windows.Forms.Button();
  29.             this.button2 = new System.Windows.Forms.Button();
  30.             this.checkBox1 = new System.Windows.Forms.CheckBox();
  31.             this.textBox1 = new System.Windows.Forms.TextBox();
  32.             this.label1 = new System.Windows.Forms.Label();
  33.             this.groupBox1 = new System.Windows.Forms.GroupBox();
  34.             this.radioButton2 = new System.Windows.Forms.RadioButton();
  35.             this.radioButton1 = new System.Windows.Forms.RadioButton();
  36.             this.groupBox1.SuspendLayout();
  37.             this.SuspendLayout();
  38.             // 
  39.             // button1
  40.             // 
  41.             this.button1.Enabled = false;
  42.             this.button1.Location = new System.Drawing.Point(353, 30);
  43.             this.button1.Name = "button1";
  44.             this.button1.Size = new System.Drawing.Size(75, 23);
  45.             this.button1.TabIndex = 0;
  46.             this.button1.Tag = "button1";
  47.             this.button1.Text = "查找下一个";
  48.             this.button1.UseVisualStyleBackColor = true;
  49.             this.button1.Click += new System.EventHandler(this.button1_Click);
  50.             // 
  51.             // button2
  52.             // 
  53.             this.button2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  54.             this.button2.Location = new System.Drawing.Point(353, 53);
  55.             this.button2.Name = "button2";
  56.             this.button2.Size = new System.Drawing.Size(75, 23);
  57.             this.button2.TabIndex = 1;
  58.             this.button2.Text = "取消";
  59.             this.button2.UseVisualStyleBackColor = true;
  60.             // 
  61.             // checkBox1
  62.             // 
  63.             this.checkBox1.Location = new System.Drawing.Point(35, 94);
  64.             this.checkBox1.Name = "checkBox1";
  65.             this.checkBox1.Size = new System.Drawing.Size(84, 16);
  66.             this.checkBox1.TabIndex = 3;
  67.             this.checkBox1.Text = "不区分大小写";
  68.             this.checkBox1.UseVisualStyleBackColor = true;
  69.             // 
  70.             // textBox1
  71.             // 
  72.             this.textBox1.Location = new System.Drawing.Point(95, 24);
  73.             this.textBox1.Name = "textBox1";
  74.             this.textBox1.Size = new System.Drawing.Size(100, 21);
  75.             this.textBox1.TabIndex = 5;
  76.             this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
  77.             // 
  78.             // label1
  79.             // 
  80.             this.label1.AutoSize = true;
  81.             this.label1.Location = new System.Drawing.Point(21, 27);
  82.             this.label1.Name = "label1";
  83.             this.label1.Size = new System.Drawing.Size(53, 12);
  84.             this.label1.TabIndex = 6;
  85.             this.label1.Text = "查找内容";
  86.             // 
  87.             // groupBox1
  88.             // 
  89.             this.groupBox1.Controls.Add(this.radioButton2);
  90.             this.groupBox1.Controls.Add(this.radioButton1);
  91.             this.groupBox1.Location = new System.Drawing.Point(125, 65);
  92.             this.groupBox1.Name = "groupBox1";
  93.             this.groupBox1.Size = new System.Drawing.Size(173, 55);
  94.             this.groupBox1.TabIndex = 7;
  95.             this.groupBox1.TabStop = false;
  96.             this.groupBox1.Text = "方向";
  97.             // 
  98.             // radioButton2
  99.             // 
  100.             this.radioButton2.AutoSize = true;
  101.             this.radioButton2.Checked = true;
  102.             this.radioButton2.Location = new System.Drawing.Point(97, 33);
  103.             this.radioButton2.Name = "radioButton2";
  104.             this.radioButton2.Size = new System.Drawing.Size(47, 16);
  105.             this.radioButton2.TabIndex = 1;
  106.             this.radioButton2.TabStop = true;
  107.             this.radioButton2.Text = "向下";
  108.             this.radioButton2.UseVisualStyleBackColor = true;
  109.             // 
  110.             // radioButton1
  111.             // 
  112.             this.radioButton1.AutoSize = true;
  113.             this.radioButton1.Location = new System.Drawing.Point(7, 33);
  114.             this.radioButton1.Name = "radioButton1";
  115.             this.radioButton1.Size = new System.Drawing.Size(47, 16);
  116.             this.radioButton1.TabIndex = 0;
  117.             this.radioButton1.Text = "向上";
  118.             this.radioButton1.UseVisualStyleBackColor = true;
  119.             // 
  120.             // 查找
  121.             // 
  122.             this.AcceptButton = this.button1;
  123.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  124.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  125.             this.CancelButton = this.button2;
  126.             this.ClientSize = new System.Drawing.Size(442, 132);
  127.             this.Controls.Add(this.groupBox1);
  128.             this.Controls.Add(this.label1);
  129.             this.Controls.Add(this.checkBox1);
  130.             this.Controls.Add(this.textBox1);
  131.             this.Controls.Add(this.button2);
  132.             this.Controls.Add(this.button1);
  133.             this.HelpButton = true;
  134.             this.MaximizeBox = false;
  135.             this.MinimizeBox = false;
  136.             this.Name = "查找";
  137.             this.ShowIcon = false;
  138.             this.ShowInTaskbar = false;
  139.             this.Text = "查找";
  140.             this.groupBox1.ResumeLayout(false);
  141.             this.groupBox1.PerformLayout();
  142.             this.ResumeLayout(false);
  143.             this.PerformLayout();
  144.         }
  145.         #endregion
  146.         private System.Windows.Forms.Button button1;
  147.         private System.Windows.Forms.Button button2;
  148.         private System.Windows.Forms.CheckBox checkBox1;
  149.         private System.Windows.Forms.TextBox textBox1;
  150.         private System.Windows.Forms.Label label1;
  151.         private System.Windows.Forms.GroupBox groupBox1;
  152.         private System.Windows.Forms.RadioButton radioButton2;
  153.         private System.Windows.Forms.RadioButton radioButton1;
  154.     }
  155. }