DxfExportForm.Designer.cs 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. using System.Windows.Forms;
  2. namespace FastReport.Forms
  3. {
  4. partial class DxfExportForm
  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.cbFillMode = new System.Windows.Forms.ComboBox();
  30. this.lblDxfFillMode = new System.Windows.Forms.Label();
  31. this.nuBarcodesGap = new System.Windows.Forms.NumericUpDown();
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.gbPageRange.SuspendLayout();
  34. this.pcPages.SuspendLayout();
  35. this.panPages.SuspendLayout();
  36. ((System.ComponentModel.ISupportInitialize)(this.nuBarcodesGap)).BeginInit();
  37. this.SuspendLayout();
  38. //
  39. // rbNumbers
  40. //
  41. this.rbNumbers.Size = new System.Drawing.Size(77, 17);
  42. this.rbNumbers.Text = "Numbers: ";
  43. //
  44. // rbCurrent
  45. //
  46. this.rbCurrent.Size = new System.Drawing.Size(68, 17);
  47. this.rbCurrent.Text = "Current ";
  48. //
  49. // rbAll
  50. //
  51. this.rbAll.Size = new System.Drawing.Size(42, 17);
  52. this.rbAll.Text = "All ";
  53. //
  54. // pcPages
  55. //
  56. this.pcPages.Location = new System.Drawing.Point(0, 0);
  57. this.pcPages.Size = new System.Drawing.Size(277, 148);
  58. //
  59. // panPages
  60. //
  61. this.panPages.Size = new System.Drawing.Size(277, 148);
  62. //
  63. // cbOpenAfter
  64. //
  65. this.cbOpenAfter.Location = new System.Drawing.Point(12, 257);
  66. this.cbOpenAfter.Size = new System.Drawing.Size(120, 17);
  67. this.cbOpenAfter.Text = "Open after export ";
  68. this.cbOpenAfter.TabIndex = 8;
  69. //
  70. // cbExportAllTabs
  71. //
  72. this.cbExportAllTabs.Location = new System.Drawing.Point(12, 237);
  73. this.cbExportAllTabs.TabIndex = 7;
  74. //
  75. // btnOk
  76. //
  77. this.btnOk.Location = new System.Drawing.Point(113, 283);
  78. //
  79. // btnCancel
  80. //
  81. this.btnCancel.Location = new System.Drawing.Point(193, 283);
  82. //
  83. // cbFillMode
  84. //
  85. this.cbFillMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  86. this.cbFillMode.FormattingEnabled = true;
  87. this.cbFillMode.Items.AddRange(new object[] {
  88. "Border",
  89. "Solid"});
  90. this.cbFillMode.Location = new System.Drawing.Point(147, 164);
  91. this.cbFillMode.Name = "cbFillMode";
  92. this.cbFillMode.Size = new System.Drawing.Size(121, 21);
  93. this.cbFillMode.TabIndex = 5;
  94. //
  95. // lblDxfFillMode
  96. //
  97. this.lblDxfFillMode.AutoSize = true;
  98. this.lblDxfFillMode.Location = new System.Drawing.Point(9, 167);
  99. this.lblDxfFillMode.Name = "lblDxfFillMode";
  100. this.lblDxfFillMode.Size = new System.Drawing.Size(52, 13);
  101. this.lblDxfFillMode.TabIndex = 4;
  102. this.lblDxfFillMode.Text = "Fill mode:";
  103. //
  104. // nuBarcodesGap
  105. //
  106. this.nuBarcodesGap.DecimalPlaces = 2;
  107. this.nuBarcodesGap.Increment = new decimal(new int[] {
  108. 1,
  109. 0,
  110. 0,
  111. 131072});
  112. this.nuBarcodesGap.Location = new System.Drawing.Point(216, 191);
  113. this.nuBarcodesGap.Name = "nuBarcodesGap";
  114. this.nuBarcodesGap.Size = new System.Drawing.Size(52, 20);
  115. this.nuBarcodesGap.TabIndex = 7;
  116. //
  117. // label1
  118. //
  119. this.label1.AutoSize = true;
  120. this.label1.Location = new System.Drawing.Point(9, 193);
  121. this.label1.Name = "label1";
  122. this.label1.Size = new System.Drawing.Size(103, 13);
  123. this.label1.TabIndex = 6;
  124. this.label1.Text = "Barcodes gap (mm):";
  125. //
  126. // DxfExportForm
  127. //
  128. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  129. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  130. this.ClientSize = new System.Drawing.Size(277, 314);
  131. this.Controls.Add(this.label1);
  132. this.Controls.Add(this.nuBarcodesGap);
  133. this.Controls.Add(this.lblDxfFillMode);
  134. this.Controls.Add(this.cbFillMode);
  135. this.Name = "DxfExportForm";
  136. this.OpenAfterVisible = true;
  137. this.Controls.SetChildIndex(this.pcPages, 0);
  138. this.Controls.SetChildIndex(this.btnCancel, 0);
  139. this.Controls.SetChildIndex(this.btnOk, 0);
  140. this.Controls.SetChildIndex(this.cbOpenAfter, 0);
  141. this.Controls.SetChildIndex(this.cbFillMode, 0);
  142. this.Controls.SetChildIndex(this.lblDxfFillMode, 0);
  143. this.Controls.SetChildIndex(this.nuBarcodesGap, 0);
  144. this.Controls.SetChildIndex(this.label1, 0);
  145. this.gbPageRange.ResumeLayout(false);
  146. this.gbPageRange.PerformLayout();
  147. this.pcPages.ResumeLayout(false);
  148. this.panPages.ResumeLayout(false);
  149. ((System.ComponentModel.ISupportInitialize)(this.nuBarcodesGap)).EndInit();
  150. this.ResumeLayout(false);
  151. this.PerformLayout();
  152. }
  153. #endregion // Windows Form Designer generated code
  154. private System.Windows.Forms.ComboBox cbFillMode;
  155. private System.Windows.Forms.Label lblDxfFillMode;
  156. private System.Windows.Forms.NumericUpDown nuBarcodesGap;
  157. private System.Windows.Forms.Label label1;
  158. }
  159. }