DataBandColumnEditorForm.Designer.cs 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. using System;
  2. using System.Windows.Forms;
  3. using System.Drawing;
  4. using FastReport.Controls;
  5. namespace FastReport.Forms
  6. {
  7. partial class DataBandColumnEditorForm
  8. {
  9. /// <summary>
  10. /// Required designer variable.
  11. /// </summary>
  12. private System.ComponentModel.IContainer components = null;
  13. /// <summary>
  14. /// Clean up any resources being used.
  15. /// </summary>
  16. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  17. protected override void Dispose(bool disposing)
  18. {
  19. if (disposing && (components != null))
  20. {
  21. components.Dispose();
  22. }
  23. base.Dispose(disposing);
  24. }
  25. #region Windows Form Designer generated code
  26. /// <summary>
  27. /// Required method for Designer support - do not modify
  28. /// the contents of this method with the code editor.
  29. /// </summary>
  30. private void InitializeComponent()
  31. {
  32. this.gbColumns = new System.Windows.Forms.GroupBox();
  33. this.tbColumnCount = new System.Windows.Forms.TextBox();
  34. this.tbWidth = new System.Windows.Forms.TextBox();
  35. this.tbColumnMinRowCount = new System.Windows.Forms.TextBox();
  36. this.cbxColumnLayout = new System.Windows.Forms.ComboBox();
  37. this.lblWidth = new System.Windows.Forms.Label();
  38. this.lblMinRowCount = new System.Windows.Forms.Label();
  39. this.lblLayout = new System.Windows.Forms.Label();
  40. this.lblColumnCount = new System.Windows.Forms.Label();
  41. this.gbColumns.SuspendLayout();
  42. this.SuspendLayout();
  43. //
  44. // btnOk
  45. //
  46. this.btnOk.Location = new System.Drawing.Point(140, 146);
  47. //
  48. // btnCancel
  49. //
  50. this.btnCancel.Location = new System.Drawing.Point(221, 146);
  51. //
  52. // gbColumns
  53. //
  54. this.gbColumns.Controls.Add(this.tbColumnCount);
  55. this.gbColumns.Controls.Add(this.tbWidth);
  56. this.gbColumns.Controls.Add(this.tbColumnMinRowCount);
  57. this.gbColumns.Controls.Add(this.cbxColumnLayout);
  58. this.gbColumns.Controls.Add(this.lblWidth);
  59. this.gbColumns.Controls.Add(this.lblMinRowCount);
  60. this.gbColumns.Controls.Add(this.lblLayout);
  61. this.gbColumns.Controls.Add(this.lblColumnCount);
  62. this.gbColumns.Location = new System.Drawing.Point(8, 4);
  63. this.gbColumns.Name = "gbColumns";
  64. this.gbColumns.Size = new System.Drawing.Size(288, 136);
  65. this.gbColumns.TabIndex = 0;
  66. this.gbColumns.TabStop = false;
  67. this.gbColumns.Text = "Columns";
  68. //
  69. // tbColumnCount
  70. //
  71. this.tbColumnCount.Location = new System.Drawing.Point(120, 19);
  72. this.tbColumnCount.MinimumSize = new System.Drawing.Size(100, 21);
  73. this.tbColumnCount.Name = "tbColumnCount";
  74. this.tbColumnCount.Size = new System.Drawing.Size(162, 20);
  75. this.tbColumnCount.TabIndex = 9;
  76. this.tbColumnCount.TextChanged += new System.EventHandler(this.tbColumnCount_TextChanged);
  77. //
  78. // tbWidth
  79. //
  80. this.tbWidth.Location = new System.Drawing.Point(120, 100);
  81. this.tbWidth.MinimumSize = new System.Drawing.Size(100, 21);
  82. this.tbWidth.Name = "tbWidth";
  83. this.tbWidth.Size = new System.Drawing.Size(162, 20);
  84. this.tbWidth.TabIndex = 8;
  85. this.tbWidth.TextChanged += new System.EventHandler(this.tbWidth_TextChanged);
  86. //
  87. // tbColumnMinRowCount
  88. //
  89. this.tbColumnMinRowCount.Location = new System.Drawing.Point(120, 73);
  90. this.tbColumnMinRowCount.MinimumSize = new System.Drawing.Size(100, 21);
  91. this.tbColumnMinRowCount.Name = "tbColumnMinRowCount";
  92. this.tbColumnMinRowCount.Size = new System.Drawing.Size(162, 20);
  93. this.tbColumnMinRowCount.TabIndex = 7;
  94. this.tbColumnMinRowCount.TextChanged += new System.EventHandler(this.tbColumnMinRowCount_TextChanged);
  95. //
  96. // cbxColumnLayout
  97. //
  98. this.cbxColumnLayout.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  99. this.cbxColumnLayout.FormattingEnabled = true;
  100. this.cbxColumnLayout.Location = new System.Drawing.Point(120, 46);
  101. this.cbxColumnLayout.Name = "cbxColumnLayout";
  102. this.cbxColumnLayout.Size = new System.Drawing.Size(162, 21);
  103. this.cbxColumnLayout.TabIndex = 6;
  104. this.cbxColumnLayout.SelectedIndexChanged += new System.EventHandler(this.cbxColumnLayout_SelectedIndexChanged);
  105. //
  106. // lblWidth
  107. //
  108. this.lblWidth.AutoSize = true;
  109. this.lblWidth.Location = new System.Drawing.Point(12, 103);
  110. this.lblWidth.Name = "lblWidth";
  111. this.lblWidth.Size = new System.Drawing.Size(35, 13);
  112. this.lblWidth.TabIndex = 4;
  113. this.lblWidth.Text = "Width";
  114. //
  115. // lblMinRowCount
  116. //
  117. this.lblMinRowCount.AutoSize = true;
  118. this.lblMinRowCount.Location = new System.Drawing.Point(12, 76);
  119. this.lblMinRowCount.Name = "lblMinRowCount";
  120. this.lblMinRowCount.Size = new System.Drawing.Size(73, 13);
  121. this.lblMinRowCount.TabIndex = 3;
  122. this.lblMinRowCount.Text = "MinRowCount";
  123. //
  124. // lblLayout
  125. //
  126. this.lblLayout.AutoSize = true;
  127. this.lblLayout.Location = new System.Drawing.Point(12, 49);
  128. this.lblLayout.Name = "lblLayout";
  129. this.lblLayout.Size = new System.Drawing.Size(40, 13);
  130. this.lblLayout.TabIndex = 2;
  131. this.lblLayout.Text = "Layout";
  132. //
  133. // lblColumnCount
  134. //
  135. this.lblColumnCount.AutoSize = true;
  136. this.lblColumnCount.Location = new System.Drawing.Point(12, 22);
  137. this.lblColumnCount.Name = "lblColumnCount";
  138. this.lblColumnCount.Size = new System.Drawing.Size(36, 13);
  139. this.lblColumnCount.TabIndex = 1;
  140. this.lblColumnCount.Text = "Count";
  141. //
  142. // DataBandColumnEditorForm
  143. //
  144. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  145. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  146. this.ClientSize = new System.Drawing.Size(305, 178);
  147. this.Controls.Add(this.gbColumns);
  148. this.Name = "DataBandColumnEditorForm";
  149. this.Text = "Data Band Column Editor";
  150. this.Controls.SetChildIndex(this.btnOk, 0);
  151. this.Controls.SetChildIndex(this.btnCancel, 0);
  152. this.Controls.SetChildIndex(this.gbColumns, 0);
  153. this.gbColumns.ResumeLayout(false);
  154. this.gbColumns.PerformLayout();
  155. this.ResumeLayout(false);
  156. }
  157. #endregion
  158. private GroupBox gbColumns;
  159. private Label lblWidth;
  160. private Label lblMinRowCount;
  161. private Label lblLayout;
  162. private Label lblColumnCount;
  163. private TextBox tbColumnCount;
  164. private TextBox tbWidth;
  165. private TextBox tbColumnMinRowCount;
  166. private ComboBox cbxColumnLayout;
  167. }
  168. }