123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254 |
- namespace WinHtmlEditor
- {
- partial class FindReplaceForm
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- 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(FindReplaceForm));
- this.tabControl = new System.Windows.Forms.TabControl();
- this.tabFind = new System.Windows.Forms.TabPage();
- this.tabReplace = new System.Windows.Forms.TabPage();
- this.labelFind = new System.Windows.Forms.Label();
- this.bCancel = new System.Windows.Forms.Button();
- this.textFind = new System.Windows.Forms.TextBox();
- this.bFindNext = new System.Windows.Forms.Button();
- this.labelReplace = new System.Windows.Forms.Label();
- this.textReplace = new System.Windows.Forms.TextBox();
- this.bReplaceAll = new System.Windows.Forms.Button();
- this.bReplace = new System.Windows.Forms.Button();
- this.bOptions = new System.Windows.Forms.Button();
- this.optionMatchCase = new System.Windows.Forms.CheckBox();
- this.optionMatchWhole = new System.Windows.Forms.CheckBox();
- this.panelOptions = new System.Windows.Forms.Panel();
- this.panelInput = new System.Windows.Forms.Panel();
- this.tabControl.SuspendLayout();
- this.panelOptions.SuspendLayout();
- this.panelInput.SuspendLayout();
- this.SuspendLayout();
- //
- // tabControl
- //
- this.tabControl.Controls.Add(this.tabFind);
- this.tabControl.Controls.Add(this.tabReplace);
- this.tabControl.Location = new System.Drawing.Point(8, 7);
- this.tabControl.Name = "tabControl";
- this.tabControl.SelectedIndex = 0;
- this.tabControl.ShowToolTips = true;
- this.tabControl.Size = new System.Drawing.Size(440, 30);
- this.tabControl.TabIndex = 0;
- this.tabControl.TabStop = false;
- this.tabControl.SelectedIndexChanged += new System.EventHandler(this.tabControl_SelectedIndexChanged);
- //
- // tabFind
- //
- this.tabFind.Location = new System.Drawing.Point(4, 22);
- this.tabFind.Name = "tabFind";
- this.tabFind.Size = new System.Drawing.Size(432, 4);
- this.tabFind.TabIndex = 0;
- this.tabFind.Text = "查找";
- this.tabFind.ToolTipText = "Find Text";
- //
- // tabReplace
- //
- this.tabReplace.Location = new System.Drawing.Point(4, 22);
- this.tabReplace.Name = "tabReplace";
- this.tabReplace.Size = new System.Drawing.Size(432, 4);
- this.tabReplace.TabIndex = 1;
- this.tabReplace.Text = "替换";
- this.tabReplace.ToolTipText = "Find and Replace Text";
- //
- // labelFind
- //
- this.labelFind.Location = new System.Drawing.Point(8, 15);
- this.labelFind.Name = "labelFind";
- this.labelFind.Size = new System.Drawing.Size(96, 21);
- this.labelFind.TabIndex = 0;
- this.labelFind.Text = "查找内容:";
- //
- // bCancel
- //
- this.bCancel.BackColor = System.Drawing.SystemColors.Control;
- this.bCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
- this.bCancel.Location = new System.Drawing.Point(344, 74);
- this.bCancel.Name = "bCancel";
- this.bCancel.Size = new System.Drawing.Size(75, 21);
- this.bCancel.TabIndex = 4;
- this.bCancel.Text = "取消";
- this.bCancel.UseVisualStyleBackColor = false;
- //
- // textFind
- //
- this.textFind.Location = new System.Drawing.Point(112, 15);
- this.textFind.Name = "textFind";
- this.textFind.Size = new System.Drawing.Size(296, 21);
- this.textFind.TabIndex = 1;
- this.textFind.TextChanged += new System.EventHandler(this.textFind_TextChanged);
- //
- // bFindNext
- //
- this.bFindNext.BackColor = System.Drawing.SystemColors.Control;
- this.bFindNext.Location = new System.Drawing.Point(264, 74);
- this.bFindNext.Name = "bFindNext";
- this.bFindNext.Size = new System.Drawing.Size(75, 21);
- this.bFindNext.TabIndex = 3;
- this.bFindNext.Text = "下一个";
- this.bFindNext.UseVisualStyleBackColor = false;
- this.bFindNext.Click += new System.EventHandler(this.bFindNext_Click);
- //
- // labelReplace
- //
- this.labelReplace.Location = new System.Drawing.Point(8, 44);
- this.labelReplace.Name = "labelReplace";
- this.labelReplace.Size = new System.Drawing.Size(96, 21);
- this.labelReplace.TabIndex = 0;
- this.labelReplace.Text = "替换内容:";
- //
- // textReplace
- //
- this.textReplace.Location = new System.Drawing.Point(112, 44);
- this.textReplace.Name = "textReplace";
- this.textReplace.Size = new System.Drawing.Size(296, 21);
- this.textReplace.TabIndex = 2;
- this.textReplace.TextChanged += new System.EventHandler(this.textReplace_TextChanged);
- //
- // bReplaceAll
- //
- this.bReplaceAll.BackColor = System.Drawing.SystemColors.Control;
- this.bReplaceAll.Location = new System.Drawing.Point(176, 74);
- this.bReplaceAll.Name = "bReplaceAll";
- this.bReplaceAll.Size = new System.Drawing.Size(75, 21);
- this.bReplaceAll.TabIndex = 7;
- this.bReplaceAll.Text = "全部替换";
- this.bReplaceAll.UseVisualStyleBackColor = false;
- this.bReplaceAll.Click += new System.EventHandler(this.bReplaceAll_Click);
- //
- // bReplace
- //
- this.bReplace.BackColor = System.Drawing.SystemColors.Control;
- this.bReplace.Location = new System.Drawing.Point(96, 74);
- this.bReplace.Name = "bReplace";
- this.bReplace.Size = new System.Drawing.Size(75, 21);
- this.bReplace.TabIndex = 6;
- this.bReplace.Text = "替换";
- this.bReplace.UseVisualStyleBackColor = false;
- this.bReplace.Click += new System.EventHandler(this.bReplace_Click);
- //
- // bOptions
- //
- this.bOptions.BackColor = System.Drawing.SystemColors.Control;
- this.bOptions.Location = new System.Drawing.Point(8, 74);
- this.bOptions.Name = "bOptions";
- this.bOptions.Size = new System.Drawing.Size(80, 21);
- this.bOptions.TabIndex = 5;
- this.bOptions.Text = "查找";
- this.bOptions.UseVisualStyleBackColor = false;
- this.bOptions.Click += new System.EventHandler(this.bOptions_Click);
- //
- // optionMatchCase
- //
- this.optionMatchCase.Location = new System.Drawing.Point(8, 7);
- this.optionMatchCase.Name = "optionMatchCase";
- this.optionMatchCase.Size = new System.Drawing.Size(240, 22);
- this.optionMatchCase.TabIndex = 8;
- this.optionMatchCase.Text = "区分大小写/精确匹配";
- //
- // optionMatchWhole
- //
- this.optionMatchWhole.Location = new System.Drawing.Point(8, 30);
- this.optionMatchWhole.Name = "optionMatchWhole";
- this.optionMatchWhole.Size = new System.Drawing.Size(240, 22);
- this.optionMatchWhole.TabIndex = 9;
- this.optionMatchWhole.Text = "全字匹配";
- //
- // panelOptions
- //
- this.panelOptions.Controls.Add(this.optionMatchCase);
- this.panelOptions.Controls.Add(this.optionMatchWhole);
- this.panelOptions.Location = new System.Drawing.Point(16, 140);
- this.panelOptions.Name = "panelOptions";
- this.panelOptions.Size = new System.Drawing.Size(424, 59);
- this.panelOptions.TabIndex = 8;
- //
- // panelInput
- //
- this.panelInput.Controls.Add(this.labelFind);
- this.panelInput.Controls.Add(this.textFind);
- this.panelInput.Controls.Add(this.labelReplace);
- this.panelInput.Controls.Add(this.textReplace);
- this.panelInput.Controls.Add(this.bOptions);
- this.panelInput.Controls.Add(this.bReplace);
- this.panelInput.Controls.Add(this.bReplaceAll);
- this.panelInput.Controls.Add(this.bFindNext);
- this.panelInput.Controls.Add(this.bCancel);
- this.panelInput.Location = new System.Drawing.Point(16, 37);
- this.panelInput.Name = "panelInput";
- this.panelInput.Size = new System.Drawing.Size(424, 103);
- this.panelInput.TabIndex = 9;
- //
- // FindReplaceForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.CancelButton = this.bCancel;
- this.ClientSize = new System.Drawing.Size(458, 207);
- this.Controls.Add(this.panelOptions);
- this.Controls.Add(this.panelInput);
- this.Controls.Add(this.tabControl);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "FindReplaceForm";
- this.ShowInTaskbar = false;
- this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
- this.Text = "查找和替换";
- this.tabControl.ResumeLayout(false);
- this.panelOptions.ResumeLayout(false);
- this.panelInput.ResumeLayout(false);
- this.panelInput.PerformLayout();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.TabPage tabFind;
- private System.Windows.Forms.TabPage tabReplace;
- private System.Windows.Forms.Label labelFind;
- private System.Windows.Forms.TabControl tabControl;
- private System.Windows.Forms.Button bCancel;
- private System.Windows.Forms.TextBox textFind;
- private System.Windows.Forms.Button bFindNext;
- private System.Windows.Forms.Label labelReplace;
- private System.Windows.Forms.Button bReplaceAll;
- private System.Windows.Forms.Button bReplace;
- private System.Windows.Forms.Button bOptions;
- private System.Windows.Forms.CheckBox optionMatchCase;
- private System.Windows.Forms.CheckBox optionMatchWhole;
- private System.Windows.Forms.TextBox textReplace;
- private System.Windows.Forms.Panel panelOptions;
- private System.Windows.Forms.Panel panelInput;
- }
- }
|