dlgSettings.Designer.cs 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. namespace qdr.app.studiou.orders2printpack
  2. {
  3. partial class dlgSettings
  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. butOk = new Button();
  29. butCancel = new Button();
  30. label1 = new Label();
  31. tbMask = new TextBox();
  32. tbExt = new TextBox();
  33. label2 = new Label();
  34. tbReplacement = new TextBox();
  35. label3 = new Label();
  36. butReset = new Button();
  37. chbCleanupDir = new CheckBox();
  38. SuspendLayout();
  39. //
  40. // butOk
  41. //
  42. butOk.Location = new Point(29, 282);
  43. butOk.Name = "butOk";
  44. butOk.Size = new Size(94, 29);
  45. butOk.TabIndex = 0;
  46. butOk.Text = "Ok";
  47. butOk.UseVisualStyleBackColor = true;
  48. butOk.Click += butOk_Click;
  49. //
  50. // butCancel
  51. //
  52. butCancel.Location = new Point(463, 282);
  53. butCancel.Name = "butCancel";
  54. butCancel.Size = new Size(94, 29);
  55. butCancel.TabIndex = 1;
  56. butCancel.Text = "Zrušit";
  57. butCancel.UseVisualStyleBackColor = true;
  58. butCancel.Click += butCancel_Click;
  59. //
  60. // label1
  61. //
  62. label1.AutoSize = true;
  63. label1.Location = new Point(12, 9);
  64. label1.Name = "label1";
  65. label1.Size = new Size(293, 20);
  66. label1.TabIndex = 2;
  67. label1.Text = "Maska výstupního souboru (generovaného)";
  68. //
  69. // tbMask
  70. //
  71. tbMask.Location = new Point(12, 32);
  72. tbMask.Name = "tbMask";
  73. tbMask.Size = new Size(557, 27);
  74. tbMask.TabIndex = 3;
  75. //
  76. // tbExt
  77. //
  78. tbExt.Location = new Point(12, 88);
  79. tbExt.Name = "tbExt";
  80. tbExt.Size = new Size(557, 27);
  81. tbExt.TabIndex = 5;
  82. //
  83. // label2
  84. //
  85. label2.AutoSize = true;
  86. label2.Location = new Point(12, 65);
  87. label2.Name = "label2";
  88. label2.Size = new Size(198, 20);
  89. label2.TabIndex = 4;
  90. label2.Text = "Přípona mediálních souborů.";
  91. //
  92. // tbReplacement
  93. //
  94. tbReplacement.Location = new Point(12, 149);
  95. tbReplacement.Name = "tbReplacement";
  96. tbReplacement.Size = new Size(557, 27);
  97. tbReplacement.TabIndex = 7;
  98. //
  99. // label3
  100. //
  101. label3.AutoSize = true;
  102. label3.Location = new Point(12, 126);
  103. label3.Name = "label3";
  104. label3.Size = new Size(385, 20);
  105. label3.TabIndex = 6;
  106. label3.Text = "Odstranit ze jména zdrojového souboru (z náhledového).";
  107. //
  108. // butReset
  109. //
  110. butReset.Location = new Point(463, 192);
  111. butReset.Name = "butReset";
  112. butReset.Size = new Size(94, 29);
  113. butReset.TabIndex = 8;
  114. butReset.Text = "Reset";
  115. butReset.UseVisualStyleBackColor = true;
  116. butReset.Click += butReset_Click;
  117. //
  118. // chbCleanupDir
  119. //
  120. chbCleanupDir.AutoSize = true;
  121. chbCleanupDir.Location = new Point(12, 197);
  122. chbCleanupDir.Name = "chbCleanupDir";
  123. chbCleanupDir.Size = new Size(314, 24);
  124. chbCleanupDir.TabIndex = 9;
  125. chbCleanupDir.Text = "Promazat výstupní adresář před spuštěním.";
  126. chbCleanupDir.UseVisualStyleBackColor = true;
  127. //
  128. // dlgSettings
  129. //
  130. AutoScaleDimensions = new SizeF(8F, 20F);
  131. AutoScaleMode = AutoScaleMode.Font;
  132. ClientSize = new Size(581, 326);
  133. ControlBox = false;
  134. Controls.Add(chbCleanupDir);
  135. Controls.Add(butReset);
  136. Controls.Add(tbReplacement);
  137. Controls.Add(label3);
  138. Controls.Add(tbExt);
  139. Controls.Add(label2);
  140. Controls.Add(tbMask);
  141. Controls.Add(label1);
  142. Controls.Add(butCancel);
  143. Controls.Add(butOk);
  144. FormBorderStyle = FormBorderStyle.FixedDialog;
  145. MaximizeBox = false;
  146. MinimizeBox = false;
  147. Name = "dlgSettings";
  148. ShowIcon = false;
  149. StartPosition = FormStartPosition.CenterScreen;
  150. Text = "Nastavení";
  151. Load += dlgSettings_Load;
  152. ResumeLayout(false);
  153. PerformLayout();
  154. }
  155. #endregion
  156. private Button butOk;
  157. private Button butCancel;
  158. private Label label1;
  159. private TextBox tbMask;
  160. private TextBox tbExt;
  161. private Label label2;
  162. private TextBox tbReplacement;
  163. private Label label3;
  164. private Button butReset;
  165. private CheckBox chbCleanupDir;
  166. }
  167. }