/TabularEditor/UI/Dialogs/ReplaceForm.Designer.cs

https://github.com/otykier/TabularEditor · C# · 184 lines · 135 code · 5 blank · 44 comment · 3 complexity · 93b9e189918c4850898c1841a7a8da75 MD5 · raw file

  1. namespace TabularEditor.UI.Dialogs
  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.label1 = new System.Windows.Forms.Label();
  29. this.label2 = new System.Windows.Forms.Label();
  30. this.chkMatchCase = new System.Windows.Forms.CheckBox();
  31. this.chkWholeWord = new System.Windows.Forms.CheckBox();
  32. this.chkRegEx = new System.Windows.Forms.CheckBox();
  33. this.txtPattern = new System.Windows.Forms.TextBox();
  34. this.txtReplaceWith = new System.Windows.Forms.TextBox();
  35. this.btnCancel = new System.Windows.Forms.Button();
  36. this.btnOK = new System.Windows.Forms.Button();
  37. this.chkTranslations = new System.Windows.Forms.CheckBox();
  38. this.SuspendLayout();
  39. //
  40. // label1
  41. //
  42. this.label1.AutoSize = true;
  43. this.label1.Location = new System.Drawing.Point(24, 12);
  44. this.label1.Name = "label1";
  45. this.label1.Size = new System.Drawing.Size(30, 13);
  46. this.label1.TabIndex = 0;
  47. this.label1.Text = "Find:";
  48. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  49. //
  50. // label2
  51. //
  52. this.label2.AutoSize = true;
  53. this.label2.Location = new System.Drawing.Point(4, 80);
  54. this.label2.Name = "label2";
  55. this.label2.Size = new System.Drawing.Size(50, 13);
  56. this.label2.TabIndex = 2;
  57. this.label2.Text = "Replace:";
  58. this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  59. //
  60. // chkMatchCase
  61. //
  62. this.chkMatchCase.AutoSize = true;
  63. this.chkMatchCase.Enabled = false;
  64. this.chkMatchCase.Location = new System.Drawing.Point(62, 35);
  65. this.chkMatchCase.Name = "chkMatchCase";
  66. this.chkMatchCase.Size = new System.Drawing.Size(82, 17);
  67. this.chkMatchCase.TabIndex = 3;
  68. this.chkMatchCase.Text = "Match case";
  69. this.chkMatchCase.UseVisualStyleBackColor = true;
  70. //
  71. // chkWholeWord
  72. //
  73. this.chkWholeWord.AutoSize = true;
  74. this.chkWholeWord.Enabled = false;
  75. this.chkWholeWord.Location = new System.Drawing.Point(150, 35);
  76. this.chkWholeWord.Name = "chkWholeWord";
  77. this.chkWholeWord.Size = new System.Drawing.Size(113, 17);
  78. this.chkWholeWord.TabIndex = 4;
  79. this.chkWholeWord.Text = "Match whole word";
  80. this.chkWholeWord.UseVisualStyleBackColor = true;
  81. //
  82. // chkRegEx
  83. //
  84. this.chkRegEx.AutoSize = true;
  85. this.chkRegEx.Location = new System.Drawing.Point(269, 35);
  86. this.chkRegEx.Name = "chkRegEx";
  87. this.chkRegEx.Size = new System.Drawing.Size(144, 17);
  88. this.chkRegEx.TabIndex = 5;
  89. this.chkRegEx.Text = "Use Regular Expressions";
  90. this.chkRegEx.UseVisualStyleBackColor = true;
  91. //
  92. // txtPattern
  93. //
  94. this.txtPattern.Location = new System.Drawing.Point(59, 9);
  95. this.txtPattern.Name = "txtPattern";
  96. this.txtPattern.Size = new System.Drawing.Size(375, 20);
  97. this.txtPattern.TabIndex = 6;
  98. this.txtPattern.TextChanged += new System.EventHandler(this.txtPattern_TextChanged);
  99. //
  100. // txtReplaceWith
  101. //
  102. this.txtReplaceWith.Location = new System.Drawing.Point(59, 77);
  103. this.txtReplaceWith.Name = "txtReplaceWith";
  104. this.txtReplaceWith.Size = new System.Drawing.Size(375, 20);
  105. this.txtReplaceWith.TabIndex = 7;
  106. //
  107. // btnCancel
  108. //
  109. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  110. this.btnCancel.Location = new System.Drawing.Point(359, 128);
  111. this.btnCancel.Name = "btnCancel";
  112. this.btnCancel.Size = new System.Drawing.Size(75, 23);
  113. this.btnCancel.TabIndex = 8;
  114. this.btnCancel.Text = "Cancel";
  115. this.btnCancel.UseVisualStyleBackColor = true;
  116. //
  117. // btnOK
  118. //
  119. this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
  120. this.btnOK.Enabled = false;
  121. this.btnOK.Location = new System.Drawing.Point(276, 128);
  122. this.btnOK.Name = "btnOK";
  123. this.btnOK.Size = new System.Drawing.Size(75, 23);
  124. this.btnOK.TabIndex = 9;
  125. this.btnOK.Text = "OK";
  126. this.btnOK.UseVisualStyleBackColor = true;
  127. //
  128. // chkTranslations
  129. //
  130. this.chkTranslations.AutoSize = true;
  131. this.chkTranslations.Location = new System.Drawing.Point(62, 103);
  132. this.chkTranslations.Name = "chkTranslations";
  133. this.chkTranslations.Size = new System.Drawing.Size(148, 17);
  134. this.chkTranslations.TabIndex = 10;
  135. this.chkTranslations.Text = "Include Name translations";
  136. this.chkTranslations.UseVisualStyleBackColor = true;
  137. //
  138. // ReplaceForm
  139. //
  140. this.AcceptButton = this.btnOK;
  141. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  142. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  143. this.CancelButton = this.btnCancel;
  144. this.ClientSize = new System.Drawing.Size(446, 163);
  145. this.Controls.Add(this.chkTranslations);
  146. this.Controls.Add(this.btnOK);
  147. this.Controls.Add(this.btnCancel);
  148. this.Controls.Add(this.txtReplaceWith);
  149. this.Controls.Add(this.label2);
  150. this.Controls.Add(this.chkMatchCase);
  151. this.Controls.Add(this.label1);
  152. this.Controls.Add(this.chkRegEx);
  153. this.Controls.Add(this.txtPattern);
  154. this.Controls.Add(this.chkWholeWord);
  155. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  156. this.MaximizeBox = false;
  157. this.MinimizeBox = false;
  158. this.Name = "ReplaceForm";
  159. this.ShowIcon = false;
  160. this.ShowInTaskbar = false;
  161. this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
  162. this.Text = "Replace in names";
  163. this.Shown += new System.EventHandler(this.ReplaceForm_Shown);
  164. this.ResumeLayout(false);
  165. this.PerformLayout();
  166. }
  167. #endregion
  168. private System.Windows.Forms.Label label1;
  169. private System.Windows.Forms.Label label2;
  170. private System.Windows.Forms.CheckBox chkMatchCase;
  171. private System.Windows.Forms.CheckBox chkWholeWord;
  172. private System.Windows.Forms.CheckBox chkRegEx;
  173. private System.Windows.Forms.TextBox txtPattern;
  174. private System.Windows.Forms.TextBox txtReplaceWith;
  175. private System.Windows.Forms.Button btnCancel;
  176. private System.Windows.Forms.Button btnOK;
  177. private System.Windows.Forms.CheckBox chkTranslations;
  178. }
  179. }