FindReplaceForm.designer.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. namespace WinHtmlEditor
  2. {
  3. partial class FindReplaceForm
  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. protected override void Dispose(bool disposing)
  13. {
  14. if (disposing && (components != null))
  15. {
  16. components.Dispose();
  17. }
  18. base.Dispose(disposing);
  19. }
  20. #region Windows Form Designer generated code
  21. /// <summary>
  22. /// Required method for Designer support - do not modify
  23. /// the contents of this method with the code editor.
  24. /// </summary>
  25. private void InitializeComponent()
  26. {
  27. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FindReplaceForm));
  28. this.tabControl = new System.Windows.Forms.TabControl();
  29. this.tabFind = new System.Windows.Forms.TabPage();
  30. this.tabReplace = new System.Windows.Forms.TabPage();
  31. this.labelFind = new System.Windows.Forms.Label();
  32. this.bCancel = new System.Windows.Forms.Button();
  33. this.textFind = new System.Windows.Forms.TextBox();
  34. this.bFindNext = new System.Windows.Forms.Button();
  35. this.labelReplace = new System.Windows.Forms.Label();
  36. this.textReplace = new System.Windows.Forms.TextBox();
  37. this.bReplaceAll = new System.Windows.Forms.Button();
  38. this.bReplace = new System.Windows.Forms.Button();
  39. this.bOptions = new System.Windows.Forms.Button();
  40. this.optionMatchCase = new System.Windows.Forms.CheckBox();
  41. this.optionMatchWhole = new System.Windows.Forms.CheckBox();
  42. this.panelOptions = new System.Windows.Forms.Panel();
  43. this.panelInput = new System.Windows.Forms.Panel();
  44. this.tabControl.SuspendLayout();
  45. this.panelOptions.SuspendLayout();
  46. this.panelInput.SuspendLayout();
  47. this.SuspendLayout();
  48. //
  49. // tabControl
  50. //
  51. this.tabControl.Controls.Add(this.tabFind);
  52. this.tabControl.Controls.Add(this.tabReplace);
  53. this.tabControl.Location = new System.Drawing.Point(8, 7);
  54. this.tabControl.Name = "tabControl";
  55. this.tabControl.SelectedIndex = 0;
  56. this.tabControl.ShowToolTips = true;
  57. this.tabControl.Size = new System.Drawing.Size(440, 30);
  58. this.tabControl.TabIndex = 0;
  59. this.tabControl.TabStop = false;
  60. this.tabControl.SelectedIndexChanged += new System.EventHandler(this.tabControl_SelectedIndexChanged);
  61. //
  62. // tabFind
  63. //
  64. this.tabFind.Location = new System.Drawing.Point(4, 22);
  65. this.tabFind.Name = "tabFind";
  66. this.tabFind.Size = new System.Drawing.Size(432, 4);
  67. this.tabFind.TabIndex = 0;
  68. this.tabFind.Text = "查找";
  69. this.tabFind.ToolTipText = "Find Text";
  70. //
  71. // tabReplace
  72. //
  73. this.tabReplace.Location = new System.Drawing.Point(4, 22);
  74. this.tabReplace.Name = "tabReplace";
  75. this.tabReplace.Size = new System.Drawing.Size(432, 4);
  76. this.tabReplace.TabIndex = 1;
  77. this.tabReplace.Text = "替换";
  78. this.tabReplace.ToolTipText = "Find and Replace Text";
  79. //
  80. // labelFind
  81. //
  82. this.labelFind.Location = new System.Drawing.Point(8, 15);
  83. this.labelFind.Name = "labelFind";
  84. this.labelFind.Size = new System.Drawing.Size(96, 21);
  85. this.labelFind.TabIndex = 0;
  86. this.labelFind.Text = "查找内容:";
  87. //
  88. // bCancel
  89. //
  90. this.bCancel.BackColor = System.Drawing.SystemColors.Control;
  91. this.bCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  92. this.bCancel.Location = new System.Drawing.Point(344, 74);
  93. this.bCancel.Name = "bCancel";
  94. this.bCancel.Size = new System.Drawing.Size(75, 21);
  95. this.bCancel.TabIndex = 4;
  96. this.bCancel.Text = "取消";
  97. this.bCancel.UseVisualStyleBackColor = false;
  98. //
  99. // textFind
  100. //
  101. this.textFind.Location = new System.Drawing.Point(112, 15);
  102. this.textFind.Name = "textFind";
  103. this.textFind.Size = new System.Drawing.Size(296, 21);
  104. this.textFind.TabIndex = 1;
  105. this.textFind.TextChanged += new System.EventHandler(this.textFind_TextChanged);
  106. //
  107. // bFindNext
  108. //
  109. this.bFindNext.BackColor = System.Drawing.SystemColors.Control;
  110. this.bFindNext.Location = new System.Drawing.Point(264, 74);
  111. this.bFindNext.Name = "bFindNext";
  112. this.bFindNext.Size = new System.Drawing.Size(75, 21);
  113. this.bFindNext.TabIndex = 3;
  114. this.bFindNext.Text = "下一个";
  115. this.bFindNext.UseVisualStyleBackColor = false;
  116. this.bFindNext.Click += new System.EventHandler(this.bFindNext_Click);
  117. //
  118. // labelReplace
  119. //
  120. this.labelReplace.Location = new System.Drawing.Point(8, 44);
  121. this.labelReplace.Name = "labelReplace";
  122. this.labelReplace.Size = new System.Drawing.Size(96, 21);
  123. this.labelReplace.TabIndex = 0;
  124. this.labelReplace.Text = "替换内容:";
  125. //
  126. // textReplace
  127. //
  128. this.textReplace.Location = new System.Drawing.Point(112, 44);
  129. this.textReplace.Name = "textReplace";
  130. this.textReplace.Size = new System.Drawing.Size(296, 21);
  131. this.textReplace.TabIndex = 2;
  132. this.textReplace.TextChanged += new System.EventHandler(this.textReplace_TextChanged);
  133. //
  134. // bReplaceAll
  135. //
  136. this.bReplaceAll.BackColor = System.Drawing.SystemColors.Control;
  137. this.bReplaceAll.Location = new System.Drawing.Point(176, 74);
  138. this.bReplaceAll.Name = "bReplaceAll";
  139. this.bReplaceAll.Size = new System.Drawing.Size(75, 21);
  140. this.bReplaceAll.TabIndex = 7;
  141. this.bReplaceAll.Text = "全部替换";
  142. this.bReplaceAll.UseVisualStyleBackColor = false;
  143. this.bReplaceAll.Click += new System.EventHandler(this.bReplaceAll_Click);
  144. //
  145. // bReplace
  146. //
  147. this.bReplace.BackColor = System.Drawing.SystemColors.Control;
  148. this.bReplace.Location = new System.Drawing.Point(96, 74);
  149. this.bReplace.Name = "bReplace";
  150. this.bReplace.Size = new System.Drawing.Size(75, 21);
  151. this.bReplace.TabIndex = 6;
  152. this.bReplace.Text = "替换";
  153. this.bReplace.UseVisualStyleBackColor = false;
  154. this.bReplace.Click += new System.EventHandler(this.bReplace_Click);
  155. //
  156. // bOptions
  157. //
  158. this.bOptions.BackColor = System.Drawing.SystemColors.Control;
  159. this.bOptions.Location = new System.Drawing.Point(8, 74);
  160. this.bOptions.Name = "bOptions";
  161. this.bOptions.Size = new System.Drawing.Size(80, 21);
  162. this.bOptions.TabIndex = 5;
  163. this.bOptions.Text = "查找";
  164. this.bOptions.UseVisualStyleBackColor = false;
  165. this.bOptions.Click += new System.EventHandler(this.bOptions_Click);
  166. //
  167. // optionMatchCase
  168. //
  169. this.optionMatchCase.Location = new System.Drawing.Point(8, 7);
  170. this.optionMatchCase.Name = "optionMatchCase";
  171. this.optionMatchCase.Size = new System.Drawing.Size(240, 22);
  172. this.optionMatchCase.TabIndex = 8;
  173. this.optionMatchCase.Text = "区分大小写/精确匹配";
  174. //
  175. // optionMatchWhole
  176. //
  177. this.optionMatchWhole.Location = new System.Drawing.Point(8, 30);
  178. this.optionMatchWhole.Name = "optionMatchWhole";
  179. this.optionMatchWhole.Size = new System.Drawing.Size(240, 22);
  180. this.optionMatchWhole.TabIndex = 9;
  181. this.optionMatchWhole.Text = "全字匹配";
  182. //
  183. // panelOptions
  184. //
  185. this.panelOptions.Controls.Add(this.optionMatchCase);
  186. this.panelOptions.Controls.Add(this.optionMatchWhole);
  187. this.panelOptions.Location = new System.Drawing.Point(16, 140);
  188. this.panelOptions.Name = "panelOptions";
  189. this.panelOptions.Size = new System.Drawing.Size(424, 59);
  190. this.panelOptions.TabIndex = 8;
  191. //
  192. // panelInput
  193. //
  194. this.panelInput.Controls.Add(this.labelFind);
  195. this.panelInput.Controls.Add(this.textFind);
  196. this.panelInput.Controls.Add(this.labelReplace);
  197. this.panelInput.Controls.Add(this.textReplace);
  198. this.panelInput.Controls.Add(this.bOptions);
  199. this.panelInput.Controls.Add(this.bReplace);
  200. this.panelInput.Controls.Add(this.bReplaceAll);
  201. this.panelInput.Controls.Add(this.bFindNext);
  202. this.panelInput.Controls.Add(this.bCancel);
  203. this.panelInput.Location = new System.Drawing.Point(16, 37);
  204. this.panelInput.Name = "panelInput";
  205. this.panelInput.Size = new System.Drawing.Size(424, 103);
  206. this.panelInput.TabIndex = 9;
  207. //
  208. // FindReplaceForm
  209. //
  210. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  211. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  212. this.CancelButton = this.bCancel;
  213. this.ClientSize = new System.Drawing.Size(458, 207);
  214. this.Controls.Add(this.panelOptions);
  215. this.Controls.Add(this.panelInput);
  216. this.Controls.Add(this.tabControl);
  217. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
  218. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  219. this.MaximizeBox = false;
  220. this.MinimizeBox = false;
  221. this.Name = "FindReplaceForm";
  222. this.ShowInTaskbar = false;
  223. this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
  224. this.Text = "查找和替换";
  225. this.tabControl.ResumeLayout(false);
  226. this.panelOptions.ResumeLayout(false);
  227. this.panelInput.ResumeLayout(false);
  228. this.panelInput.PerformLayout();
  229. this.ResumeLayout(false);
  230. }
  231. #endregion
  232. private System.Windows.Forms.TabPage tabFind;
  233. private System.Windows.Forms.TabPage tabReplace;
  234. private System.Windows.Forms.Label labelFind;
  235. private System.Windows.Forms.TabControl tabControl;
  236. private System.Windows.Forms.Button bCancel;
  237. private System.Windows.Forms.TextBox textFind;
  238. private System.Windows.Forms.Button bFindNext;
  239. private System.Windows.Forms.Label labelReplace;
  240. private System.Windows.Forms.Button bReplaceAll;
  241. private System.Windows.Forms.Button bReplace;
  242. private System.Windows.Forms.Button bOptions;
  243. private System.Windows.Forms.CheckBox optionMatchCase;
  244. private System.Windows.Forms.CheckBox optionMatchWhole;
  245. private System.Windows.Forms.TextBox textReplace;
  246. private System.Windows.Forms.Panel panelOptions;
  247. private System.Windows.Forms.Panel panelInput;
  248. }
  249. }