/YamuiFramework/Controls/FastColoredTextBox/Core/FindForm.designer.cs

https://github.com/jcaillon/3P · C# · 146 lines · 105 code · 6 blank · 35 comment · 3 complexity · 12bd8b85ea79ff53927fe7f51068c711 MD5 · raw file

  1. namespace YamuiFramework.Controls.FastColoredTextBox.Core
  2. {
  3. partial class FindForm
  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.SuspendLayout();
  36. //
  37. // btClose
  38. //
  39. this.btClose.Location = new System.Drawing.Point(273, 73);
  40. this.btClose.Name = "btClose";
  41. this.btClose.Size = new System.Drawing.Size(75, 23);
  42. this.btClose.TabIndex = 5;
  43. this.btClose.Text = "Close";
  44. this.btClose.UseVisualStyleBackColor = true;
  45. this.btClose.Click += new System.EventHandler(this.btClose_Click);
  46. //
  47. // btFindNext
  48. //
  49. this.btFindNext.Location = new System.Drawing.Point(192, 73);
  50. this.btFindNext.Name = "btFindNext";
  51. this.btFindNext.Size = new System.Drawing.Size(75, 23);
  52. this.btFindNext.TabIndex = 4;
  53. this.btFindNext.Text = "Find next";
  54. this.btFindNext.UseVisualStyleBackColor = true;
  55. this.btFindNext.Click += new System.EventHandler(this.btFindNext_Click);
  56. //
  57. // tbFind
  58. //
  59. this.tbFind.Location = new System.Drawing.Point(42, 12);
  60. this.tbFind.Name = "tbFind";
  61. this.tbFind.Size = new System.Drawing.Size(306, 20);
  62. this.tbFind.TabIndex = 0;
  63. this.tbFind.TextChanged += new System.EventHandler(this.cbMatchCase_CheckedChanged);
  64. this.tbFind.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tbFind_KeyPress);
  65. //
  66. // cbRegex
  67. //
  68. this.cbRegex.AutoSize = true;
  69. this.cbRegex.Location = new System.Drawing.Point(249, 38);
  70. this.cbRegex.Name = "cbRegex";
  71. this.cbRegex.Size = new System.Drawing.Size(57, 17);
  72. this.cbRegex.TabIndex = 3;
  73. this.cbRegex.Text = "Regex";
  74. this.cbRegex.UseVisualStyleBackColor = true;
  75. this.cbRegex.CheckedChanged += new System.EventHandler(this.cbMatchCase_CheckedChanged);
  76. //
  77. // cbMatchCase
  78. //
  79. this.cbMatchCase.AutoSize = true;
  80. this.cbMatchCase.Location = new System.Drawing.Point(42, 38);
  81. this.cbMatchCase.Name = "cbMatchCase";
  82. this.cbMatchCase.Size = new System.Drawing.Size(82, 17);
  83. this.cbMatchCase.TabIndex = 1;
  84. this.cbMatchCase.Text = "Match case";
  85. this.cbMatchCase.UseVisualStyleBackColor = true;
  86. this.cbMatchCase.CheckedChanged += new System.EventHandler(this.cbMatchCase_CheckedChanged);
  87. //
  88. // label1
  89. //
  90. this.label1.AutoSize = true;
  91. this.label1.Location = new System.Drawing.Point(6, 15);
  92. this.label1.Name = "label1";
  93. this.label1.Size = new System.Drawing.Size(33, 13);
  94. this.label1.TabIndex = 5;
  95. this.label1.Text = "Find: ";
  96. //
  97. // cbWholeWord
  98. //
  99. this.cbWholeWord.AutoSize = true;
  100. this.cbWholeWord.Location = new System.Drawing.Point(130, 38);
  101. this.cbWholeWord.Name = "cbWholeWord";
  102. this.cbWholeWord.Size = new System.Drawing.Size(113, 17);
  103. this.cbWholeWord.TabIndex = 2;
  104. this.cbWholeWord.Text = "Match whole word";
  105. this.cbWholeWord.UseVisualStyleBackColor = true;
  106. this.cbWholeWord.CheckedChanged += new System.EventHandler(this.cbMatchCase_CheckedChanged);
  107. //
  108. // FindForm
  109. //
  110. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  111. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  112. this.ClientSize = new System.Drawing.Size(360, 108);
  113. this.Controls.Add(this.cbWholeWord);
  114. this.Controls.Add(this.label1);
  115. this.Controls.Add(this.cbMatchCase);
  116. this.Controls.Add(this.cbRegex);
  117. this.Controls.Add(this.tbFind);
  118. this.Controls.Add(this.btFindNext);
  119. this.Controls.Add(this.btClose);
  120. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
  121. this.Name = "FindForm";
  122. this.ShowIcon = false;
  123. this.ShowInTaskbar = false;
  124. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  125. this.Text = "Find";
  126. this.TopMost = true;
  127. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FindForm_FormClosing);
  128. this.ResumeLayout(false);
  129. this.PerformLayout();
  130. }
  131. #endregion
  132. private System.Windows.Forms.Button btClose;
  133. private System.Windows.Forms.Button btFindNext;
  134. private System.Windows.Forms.CheckBox cbRegex;
  135. private System.Windows.Forms.CheckBox cbMatchCase;
  136. private System.Windows.Forms.Label label1;
  137. private System.Windows.Forms.CheckBox cbWholeWord;
  138. public System.Windows.Forms.TextBox tbFind;
  139. }
  140. }