dlgImport.Designer.cs 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. namespace qdr.app.studiou.orders2printpack
  2. {
  3. partial class dlgImport
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(dlgImport));
  29. label1 = new Label();
  30. tbImportDir = new TextBox();
  31. butOpenDir = new Button();
  32. label2 = new Label();
  33. dtUploadDate = new DateTimePicker();
  34. label3 = new Label();
  35. tbUrlPrefix = new TextBox();
  36. tbShortDescription = new TextBox();
  37. label4 = new Label();
  38. tbDescription = new TextBox();
  39. label5 = new Label();
  40. butImport = new Button();
  41. butCancel = new Button();
  42. label6 = new Label();
  43. textBox3 = new TextBox();
  44. dlgOpenDir = new FolderBrowserDialog();
  45. SuspendLayout();
  46. //
  47. // label1
  48. //
  49. label1.AutoSize = true;
  50. label1.Location = new Point(12, 9);
  51. label1.Name = "label1";
  52. label1.Size = new Size(232, 15);
  53. label1.TabIndex = 0;
  54. label1.Text = "Importní adresář (Kategorie\\Varianta\\*.jpg)";
  55. //
  56. // tbImportDir
  57. //
  58. tbImportDir.Location = new Point(12, 27);
  59. tbImportDir.Name = "tbImportDir";
  60. tbImportDir.ReadOnly = true;
  61. tbImportDir.Size = new Size(305, 23);
  62. tbImportDir.TabIndex = 1;
  63. //
  64. // butOpenDir
  65. //
  66. butOpenDir.Location = new Point(323, 27);
  67. butOpenDir.Name = "butOpenDir";
  68. butOpenDir.Size = new Size(37, 23);
  69. butOpenDir.TabIndex = 2;
  70. butOpenDir.Text = "...";
  71. butOpenDir.UseVisualStyleBackColor = true;
  72. butOpenDir.Click += butOpenDir_Click;
  73. //
  74. // label2
  75. //
  76. label2.AutoSize = true;
  77. label2.Location = new Point(12, 53);
  78. label2.Name = "label2";
  79. label2.Size = new Size(183, 15);
  80. label2.TabIndex = 3;
  81. label2.Text = "Datum uploadu fotografií na web";
  82. //
  83. // dtUploadDate
  84. //
  85. dtUploadDate.Format = DateTimePickerFormat.Short;
  86. dtUploadDate.Location = new Point(12, 71);
  87. dtUploadDate.Name = "dtUploadDate";
  88. dtUploadDate.Size = new Size(305, 23);
  89. dtUploadDate.TabIndex = 4;
  90. //
  91. // label3
  92. //
  93. label3.AutoSize = true;
  94. label3.Location = new Point(12, 97);
  95. label3.Name = "label3";
  96. label3.Size = new Size(66, 15);
  97. label3.TabIndex = 5;
  98. label3.Text = "Url šablona";
  99. //
  100. // tbUrlPrefix
  101. //
  102. tbUrlPrefix.Location = new Point(15, 114);
  103. tbUrlPrefix.Name = "tbUrlPrefix";
  104. tbUrlPrefix.Size = new Size(302, 23);
  105. tbUrlPrefix.TabIndex = 6;
  106. //
  107. // tbShortDescription
  108. //
  109. tbShortDescription.Location = new Point(15, 158);
  110. tbShortDescription.Name = "tbShortDescription";
  111. tbShortDescription.Size = new Size(302, 23);
  112. tbShortDescription.TabIndex = 8;
  113. //
  114. // label4
  115. //
  116. label4.AutoSize = true;
  117. label4.Location = new Point(12, 141);
  118. label4.Name = "label4";
  119. label4.Size = new Size(116, 15);
  120. label4.TabIndex = 7;
  121. label4.Text = "Krátký popis šablona";
  122. //
  123. // tbDescription
  124. //
  125. tbDescription.Location = new Point(15, 204);
  126. tbDescription.Multiline = true;
  127. tbDescription.Name = "tbDescription";
  128. tbDescription.Size = new Size(302, 88);
  129. tbDescription.TabIndex = 10;
  130. //
  131. // label5
  132. //
  133. label5.AutoSize = true;
  134. label5.Location = new Point(12, 187);
  135. label5.Name = "label5";
  136. label5.Size = new Size(121, 15);
  137. label5.TabIndex = 9;
  138. label5.Text = "Dlouhý popis šablona";
  139. //
  140. // butImport
  141. //
  142. butImport.Location = new Point(15, 307);
  143. butImport.Name = "butImport";
  144. butImport.Size = new Size(75, 23);
  145. butImport.TabIndex = 11;
  146. butImport.Text = "Import";
  147. butImport.UseVisualStyleBackColor = true;
  148. butImport.Click += butImport_Click;
  149. //
  150. // butCancel
  151. //
  152. butCancel.Location = new Point(564, 307);
  153. butCancel.Name = "butCancel";
  154. butCancel.Size = new Size(75, 23);
  155. butCancel.TabIndex = 12;
  156. butCancel.Text = "Zrušit";
  157. butCancel.UseVisualStyleBackColor = true;
  158. butCancel.Click += button2_Click;
  159. //
  160. // label6
  161. //
  162. label6.AutoSize = true;
  163. label6.Font = new Font("Segoe UI", 9F, FontStyle.Bold);
  164. label6.Location = new Point(366, 27);
  165. label6.Name = "label6";
  166. label6.Size = new Size(95, 15);
  167. label6.TabIndex = 13;
  168. label6.Text = "Značky / příklad";
  169. //
  170. // textBox3
  171. //
  172. textBox3.Location = new Point(373, 46);
  173. textBox3.Multiline = true;
  174. textBox3.Name = "textBox3";
  175. textBox3.ReadOnly = true;
  176. textBox3.Size = new Size(266, 250);
  177. textBox3.TabIndex = 14;
  178. textBox3.Text = resources.GetString("textBox3.Text");
  179. //
  180. // dlgImport
  181. //
  182. AutoScaleDimensions = new SizeF(7F, 15F);
  183. AutoScaleMode = AutoScaleMode.Font;
  184. ClientSize = new Size(656, 343);
  185. Controls.Add(textBox3);
  186. Controls.Add(label6);
  187. Controls.Add(butCancel);
  188. Controls.Add(butImport);
  189. Controls.Add(tbDescription);
  190. Controls.Add(label5);
  191. Controls.Add(tbShortDescription);
  192. Controls.Add(label4);
  193. Controls.Add(tbUrlPrefix);
  194. Controls.Add(label3);
  195. Controls.Add(dtUploadDate);
  196. Controls.Add(label2);
  197. Controls.Add(butOpenDir);
  198. Controls.Add(tbImportDir);
  199. Controls.Add(label1);
  200. FormBorderStyle = FormBorderStyle.FixedDialog;
  201. MaximizeBox = false;
  202. MinimizeBox = false;
  203. Name = "dlgImport";
  204. Text = "Import produktů z adresářové struktury";
  205. ResumeLayout(false);
  206. PerformLayout();
  207. }
  208. #endregion
  209. private Label label1;
  210. private TextBox tbImportDir;
  211. private Button butOpenDir;
  212. private Label label2;
  213. private DateTimePicker dtUploadDate;
  214. private Label label3;
  215. private TextBox tbUrlPrefix;
  216. private TextBox tbShortDescription;
  217. private Label label4;
  218. private TextBox tbDescription;
  219. private Label label5;
  220. private Button butImport;
  221. private Button butCancel;
  222. private Label label6;
  223. private TextBox textBox3;
  224. private FolderBrowserDialog dlgOpenDir;
  225. }
  226. }