PreviewSearchForm.Designer.cs 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. using FastReport.Controls;
  2. namespace FastReport.Forms
  3. {
  4. partial class PreviewSearchForm
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.lblFind = new System.Windows.Forms.Label();
  30. this.cbxFind = new System.Windows.Forms.ComboBox();
  31. this.gbOptions = new System.Windows.Forms.GroupBox();
  32. this.cbMatchWholeWord = new System.Windows.Forms.CheckBox();
  33. this.cbMatchCase = new System.Windows.Forms.CheckBox();
  34. this.gbOptions.SuspendLayout();
  35. this.SuspendLayout();
  36. //
  37. // btnOk
  38. //
  39. this.btnOk.Location = new System.Drawing.Point(8, 136);
  40. this.btnOk.Size = new System.Drawing.Size(123, 23);
  41. this.btnOk.TabIndex = 2;
  42. this.btnOk.Text = "Find Next";
  43. this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
  44. //
  45. // btnCancel
  46. //
  47. this.btnCancel.Location = new System.Drawing.Point(136, 136);
  48. this.btnCancel.TabIndex = 3;
  49. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  50. //
  51. // lblFind
  52. //
  53. this.lblFind.AutoSize = true;
  54. this.lblFind.Location = new System.Drawing.Point(8, 6);
  55. this.lblFind.Name = "lblFind";
  56. this.lblFind.Size = new System.Drawing.Size(58, 13);
  57. this.lblFind.TabIndex = 1;
  58. this.lblFind.Text = "Find what:";
  59. //
  60. // cbxFind
  61. //
  62. this.cbxFind.FormattingEnabled = true;
  63. this.cbxFind.Location = new System.Drawing.Point(8, 24);
  64. this.cbxFind.Name = "cbxFind";
  65. this.cbxFind.Size = new System.Drawing.Size(204, 21);
  66. this.cbxFind.TabIndex = 0;
  67. this.cbxFind.TextChanged += new System.EventHandler(this.cbxFind_TextChanged);
  68. //
  69. // gbOptions
  70. //
  71. this.gbOptions.Controls.Add(this.cbMatchWholeWord);
  72. this.gbOptions.Controls.Add(this.cbMatchCase);
  73. this.gbOptions.Location = new System.Drawing.Point(8, 52);
  74. this.gbOptions.Name = "gbOptions";
  75. this.gbOptions.Size = new System.Drawing.Size(204, 72);
  76. this.gbOptions.TabIndex = 1;
  77. this.gbOptions.TabStop = false;
  78. this.gbOptions.Text = "Find options";
  79. //
  80. // cbMatchWholeWord
  81. //
  82. this.cbMatchWholeWord.AutoSize = true;
  83. this.cbMatchWholeWord.Location = new System.Drawing.Point(12, 44);
  84. this.cbMatchWholeWord.Name = "cbMatchWholeWord";
  85. this.cbMatchWholeWord.Size = new System.Drawing.Size(113, 17);
  86. this.cbMatchWholeWord.TabIndex = 1;
  87. this.cbMatchWholeWord.Text = "Match whole word";
  88. this.cbMatchWholeWord.UseVisualStyleBackColor = true;
  89. //
  90. // cbMatchCase
  91. //
  92. this.cbMatchCase.AutoSize = true;
  93. this.cbMatchCase.Location = new System.Drawing.Point(12, 20);
  94. this.cbMatchCase.Name = "cbMatchCase";
  95. this.cbMatchCase.Size = new System.Drawing.Size(80, 17);
  96. this.cbMatchCase.TabIndex = 0;
  97. this.cbMatchCase.Text = "Match case";
  98. this.cbMatchCase.UseVisualStyleBackColor = true;
  99. //
  100. // PreviewSearchForm
  101. //
  102. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  103. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  104. this.ClientSize = new System.Drawing.Size(221, 170);
  105. this.Controls.Add(this.lblFind);
  106. this.Controls.Add(this.cbxFind);
  107. this.Controls.Add(this.gbOptions);
  108. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
  109. this.Name = "PreviewSearchForm";
  110. this.Text = "Find";
  111. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.PreviewSearchForm_FormClosed);
  112. this.Controls.SetChildIndex(this.gbOptions, 0);
  113. this.Controls.SetChildIndex(this.btnOk, 0);
  114. this.Controls.SetChildIndex(this.btnCancel, 0);
  115. this.Controls.SetChildIndex(this.cbxFind, 0);
  116. this.Controls.SetChildIndex(this.lblFind, 0);
  117. this.gbOptions.ResumeLayout(false);
  118. this.gbOptions.PerformLayout();
  119. this.ResumeLayout(false);
  120. this.PerformLayout();
  121. }
  122. #endregion
  123. private System.Windows.Forms.Label lblFind;
  124. private System.Windows.Forms.ComboBox cbxFind;
  125. private System.Windows.Forms.GroupBox gbOptions;
  126. private System.Windows.Forms.CheckBox cbMatchWholeWord;
  127. private System.Windows.Forms.CheckBox cbMatchCase;
  128. }
  129. }