dlgSettings.Designer.cs 5.3 KB

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