/Source/OpenWebKitSharp/Source Code Control/ReplaceForm.designer.cs

http://open-webkit-sharp.googlecode.com/ · C# · 198 lines · 145 code · 6 blank · 47 comment · 3 complexity · 49575db7cc5a5e85856073c55f3cbfff MD5 · raw file

  1. namespace FastColoredTextBoxNS
  2. {
  3. partial class ReplaceForm
  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. this.btClose = new System.Windows.Forms.Button();
  29. this.btFindNext = new System.Windows.Forms.Button();
  30. this.tbFind = new System.Windows.Forms.TextBox();
  31. this.cbRegex = new System.Windows.Forms.CheckBox();
  32. this.cbMatchCase = new System.Windows.Forms.CheckBox();
  33. this.label1 = new System.Windows.Forms.Label();
  34. this.cbWholeWord = new System.Windows.Forms.CheckBox();
  35. this.btReplace = new System.Windows.Forms.Button();
  36. this.btReplaceAll = new System.Windows.Forms.Button();
  37. this.label2 = new System.Windows.Forms.Label();
  38. this.tbReplace = new System.Windows.Forms.TextBox();
  39. this.SuspendLayout();
  40. //
  41. // btClose
  42. //
  43. this.btClose.Location = new System.Drawing.Point(273, 138);
  44. this.btClose.Name = "btClose";
  45. this.btClose.Size = new System.Drawing.Size(75, 23);
  46. this.btClose.TabIndex = 7;
  47. this.btClose.Text = "Close";
  48. this.btClose.UseVisualStyleBackColor = true;
  49. this.btClose.Click += new System.EventHandler(this.btClose_Click);
  50. //
  51. // btFindNext
  52. //
  53. this.btFindNext.Location = new System.Drawing.Point(111, 109);
  54. this.btFindNext.Name = "btFindNext";
  55. this.btFindNext.Size = new System.Drawing.Size(75, 23);
  56. this.btFindNext.TabIndex = 4;
  57. this.btFindNext.Text = "Find next";
  58. this.btFindNext.UseVisualStyleBackColor = true;
  59. this.btFindNext.Click += new System.EventHandler(this.btFindNext_Click);
  60. //
  61. // tbFind
  62. //
  63. this.tbFind.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  64. this.tbFind.Location = new System.Drawing.Point(62, 12);
  65. this.tbFind.Name = "tbFind";
  66. this.tbFind.Size = new System.Drawing.Size(286, 20);
  67. this.tbFind.TabIndex = 0;
  68. this.tbFind.TextChanged += new System.EventHandler(this.cbMatchCase_CheckedChanged);
  69. this.tbFind.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tbFind_KeyPress);
  70. //
  71. // cbRegex
  72. //
  73. this.cbRegex.AutoSize = true;
  74. this.cbRegex.Location = new System.Drawing.Point(273, 38);
  75. this.cbRegex.Name = "cbRegex";
  76. this.cbRegex.Size = new System.Drawing.Size(57, 17);
  77. this.cbRegex.TabIndex = 3;
  78. this.cbRegex.Text = "Regex";
  79. this.cbRegex.UseVisualStyleBackColor = true;
  80. this.cbRegex.CheckedChanged += new System.EventHandler(this.cbMatchCase_CheckedChanged);
  81. //
  82. // cbMatchCase
  83. //
  84. this.cbMatchCase.AutoSize = true;
  85. this.cbMatchCase.Location = new System.Drawing.Point(66, 38);
  86. this.cbMatchCase.Name = "cbMatchCase";
  87. this.cbMatchCase.Size = new System.Drawing.Size(82, 17);
  88. this.cbMatchCase.TabIndex = 1;
  89. this.cbMatchCase.Text = "Match case";
  90. this.cbMatchCase.UseVisualStyleBackColor = true;
  91. this.cbMatchCase.CheckedChanged += new System.EventHandler(this.cbMatchCase_CheckedChanged);
  92. //
  93. // label1
  94. //
  95. this.label1.AutoSize = true;
  96. this.label1.Location = new System.Drawing.Point(23, 14);
  97. this.label1.Name = "label1";
  98. this.label1.Size = new System.Drawing.Size(33, 13);
  99. this.label1.TabIndex = 5;
  100. this.label1.Text = "Find: ";
  101. //
  102. // cbWholeWord
  103. //
  104. this.cbWholeWord.AutoSize = true;
  105. this.cbWholeWord.Location = new System.Drawing.Point(154, 38);
  106. this.cbWholeWord.Name = "cbWholeWord";
  107. this.cbWholeWord.Size = new System.Drawing.Size(113, 17);
  108. this.cbWholeWord.TabIndex = 2;
  109. this.cbWholeWord.Text = "Match whole word";
  110. this.cbWholeWord.UseVisualStyleBackColor = true;
  111. this.cbWholeWord.CheckedChanged += new System.EventHandler(this.cbMatchCase_CheckedChanged);
  112. //
  113. // btReplace
  114. //
  115. this.btReplace.Location = new System.Drawing.Point(192, 109);
  116. this.btReplace.Name = "btReplace";
  117. this.btReplace.Size = new System.Drawing.Size(75, 23);
  118. this.btReplace.TabIndex = 5;
  119. this.btReplace.Text = "Replace";
  120. this.btReplace.UseVisualStyleBackColor = true;
  121. this.btReplace.Click += new System.EventHandler(this.btReplace_Click);
  122. //
  123. // btReplaceAll
  124. //
  125. this.btReplaceAll.Location = new System.Drawing.Point(273, 109);
  126. this.btReplaceAll.Name = "btReplaceAll";
  127. this.btReplaceAll.Size = new System.Drawing.Size(75, 23);
  128. this.btReplaceAll.TabIndex = 6;
  129. this.btReplaceAll.Text = "Replace all";
  130. this.btReplaceAll.UseVisualStyleBackColor = true;
  131. this.btReplaceAll.Click += new System.EventHandler(this.btReplaceAll_Click);
  132. //
  133. // label2
  134. //
  135. this.label2.AutoSize = true;
  136. this.label2.Location = new System.Drawing.Point(6, 74);
  137. this.label2.Name = "label2";
  138. this.label2.Size = new System.Drawing.Size(50, 13);
  139. this.label2.TabIndex = 9;
  140. this.label2.Text = "Replace:";
  141. //
  142. // tbReplace
  143. //
  144. this.tbReplace.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  145. this.tbReplace.Location = new System.Drawing.Point(62, 71);
  146. this.tbReplace.Name = "tbReplace";
  147. this.tbReplace.Size = new System.Drawing.Size(286, 20);
  148. this.tbReplace.TabIndex = 0;
  149. this.tbReplace.TextChanged += new System.EventHandler(this.cbMatchCase_CheckedChanged);
  150. this.tbReplace.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tbFind_KeyPress);
  151. //
  152. // ReplaceForm
  153. //
  154. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  155. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  156. this.ClientSize = new System.Drawing.Size(360, 173);
  157. this.Controls.Add(this.tbFind);
  158. this.Controls.Add(this.label2);
  159. this.Controls.Add(this.tbReplace);
  160. this.Controls.Add(this.btReplaceAll);
  161. this.Controls.Add(this.btReplace);
  162. this.Controls.Add(this.cbWholeWord);
  163. this.Controls.Add(this.label1);
  164. this.Controls.Add(this.cbMatchCase);
  165. this.Controls.Add(this.cbRegex);
  166. this.Controls.Add(this.btFindNext);
  167. this.Controls.Add(this.btClose);
  168. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
  169. this.Name = "ReplaceForm";
  170. this.ShowIcon = false;
  171. this.ShowInTaskbar = false;
  172. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  173. this.Text = "Find and replace";
  174. this.TopMost = true;
  175. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FindForm_FormClosing);
  176. this.ResumeLayout(false);
  177. this.PerformLayout();
  178. }
  179. #endregion
  180. private System.Windows.Forms.Button btClose;
  181. private System.Windows.Forms.Button btFindNext;
  182. private System.Windows.Forms.CheckBox cbRegex;
  183. private System.Windows.Forms.CheckBox cbMatchCase;
  184. private System.Windows.Forms.Label label1;
  185. private System.Windows.Forms.CheckBox cbWholeWord;
  186. private System.Windows.Forms.Button btReplace;
  187. private System.Windows.Forms.Button btReplaceAll;
  188. private System.Windows.Forms.Label label2;
  189. private System.Windows.Forms.TextBox tbReplace;
  190. public System.Windows.Forms.TextBox tbFind;
  191. }
  192. }