FormGetMaterial.Designer.cs 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441
  1. namespace СУБД_Швейная_фабрика
  2. {
  3. partial class FormGetMaterial
  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(FormGetMaterial));
  29. this.BtnCancel = new System.Windows.Forms.Button();
  30. this.BtnOK = new System.Windows.Forms.Button();
  31. this.tabControl1 = new System.Windows.Forms.TabControl();
  32. this.tabPage1 = new System.Windows.Forms.TabPage();
  33. this.BtnDelTkan = new System.Windows.Forms.Button();
  34. this.DgvTkani = new System.Windows.Forms.DataGridView();
  35. this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  36. this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  37. this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  38. this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  39. this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  40. this.BtnAddTkan = new System.Windows.Forms.Button();
  41. this.BtnClearPhotoTkan = new System.Windows.Forms.Button();
  42. this.BtnLoadPhotoTkan = new System.Windows.Forms.Button();
  43. this.PbxPhotoTkan = new System.Windows.Forms.PictureBox();
  44. this.label6 = new System.Windows.Forms.Label();
  45. this.label5 = new System.Windows.Forms.Label();
  46. this.label4 = new System.Windows.Forms.Label();
  47. this.label3 = new System.Windows.Forms.Label();
  48. this.label2 = new System.Windows.Forms.Label();
  49. this.TbxDescriptionTkan = new System.Windows.Forms.TextBox();
  50. this.TbxColorTkan = new System.Windows.Forms.TextBox();
  51. this.TbxLengthTkan = new System.Windows.Forms.TextBox();
  52. this.TbxWidthTkan = new System.Windows.Forms.TextBox();
  53. this.TbxNameTkan = new System.Windows.Forms.TextBox();
  54. this.tabPage2 = new System.Windows.Forms.TabPage();
  55. this.panel1 = new System.Windows.Forms.Panel();
  56. this.label1 = new System.Windows.Forms.Label();
  57. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  58. this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
  59. this.tabControl1.SuspendLayout();
  60. this.tabPage1.SuspendLayout();
  61. ((System.ComponentModel.ISupportInitialize)(this.DgvTkani)).BeginInit();
  62. ((System.ComponentModel.ISupportInitialize)(this.PbxPhotoTkan)).BeginInit();
  63. this.panel1.SuspendLayout();
  64. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  65. this.SuspendLayout();
  66. //
  67. // BtnCancel
  68. //
  69. this.BtnCancel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(156)))), ((int)(((byte)(26)))));
  70. this.BtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  71. this.BtnCancel.Location = new System.Drawing.Point(338, 526);
  72. this.BtnCancel.Margin = new System.Windows.Forms.Padding(2);
  73. this.BtnCancel.Name = "BtnCancel";
  74. this.BtnCancel.Size = new System.Drawing.Size(199, 23);
  75. this.BtnCancel.TabIndex = 19;
  76. this.BtnCancel.Text = "Отменить";
  77. this.BtnCancel.UseVisualStyleBackColor = false;
  78. //
  79. // BtnOK
  80. //
  81. this.BtnOK.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(156)))), ((int)(((byte)(26)))));
  82. this.BtnOK.Location = new System.Drawing.Point(41, 526);
  83. this.BtnOK.Margin = new System.Windows.Forms.Padding(2);
  84. this.BtnOK.Name = "BtnOK";
  85. this.BtnOK.Size = new System.Drawing.Size(199, 23);
  86. this.BtnOK.TabIndex = 18;
  87. this.BtnOK.Text = "Принять документ к учету";
  88. this.BtnOK.UseVisualStyleBackColor = false;
  89. this.BtnOK.Click += new System.EventHandler(this.BtnOK_Click);
  90. //
  91. // tabControl1
  92. //
  93. this.tabControl1.Controls.Add(this.tabPage1);
  94. this.tabControl1.Controls.Add(this.tabPage2);
  95. this.tabControl1.Location = new System.Drawing.Point(10, 123);
  96. this.tabControl1.Margin = new System.Windows.Forms.Padding(2);
  97. this.tabControl1.Name = "tabControl1";
  98. this.tabControl1.SelectedIndex = 0;
  99. this.tabControl1.Size = new System.Drawing.Size(565, 384);
  100. this.tabControl1.TabIndex = 17;
  101. //
  102. // tabPage1
  103. //
  104. this.tabPage1.Controls.Add(this.BtnDelTkan);
  105. this.tabPage1.Controls.Add(this.DgvTkani);
  106. this.tabPage1.Controls.Add(this.BtnAddTkan);
  107. this.tabPage1.Controls.Add(this.BtnClearPhotoTkan);
  108. this.tabPage1.Controls.Add(this.BtnLoadPhotoTkan);
  109. this.tabPage1.Controls.Add(this.PbxPhotoTkan);
  110. this.tabPage1.Controls.Add(this.label6);
  111. this.tabPage1.Controls.Add(this.label5);
  112. this.tabPage1.Controls.Add(this.label4);
  113. this.tabPage1.Controls.Add(this.label3);
  114. this.tabPage1.Controls.Add(this.label2);
  115. this.tabPage1.Controls.Add(this.TbxDescriptionTkan);
  116. this.tabPage1.Controls.Add(this.TbxColorTkan);
  117. this.tabPage1.Controls.Add(this.TbxLengthTkan);
  118. this.tabPage1.Controls.Add(this.TbxWidthTkan);
  119. this.tabPage1.Controls.Add(this.TbxNameTkan);
  120. this.tabPage1.Location = new System.Drawing.Point(4, 22);
  121. this.tabPage1.Margin = new System.Windows.Forms.Padding(2);
  122. this.tabPage1.Name = "tabPage1";
  123. this.tabPage1.Padding = new System.Windows.Forms.Padding(2);
  124. this.tabPage1.Size = new System.Drawing.Size(557, 358);
  125. this.tabPage1.TabIndex = 0;
  126. this.tabPage1.Text = "Добавить в документ ткани";
  127. this.tabPage1.UseVisualStyleBackColor = true;
  128. //
  129. // BtnDelTkan
  130. //
  131. this.BtnDelTkan.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(156)))), ((int)(((byte)(26)))));
  132. this.BtnDelTkan.Location = new System.Drawing.Point(7, 323);
  133. this.BtnDelTkan.Margin = new System.Windows.Forms.Padding(2);
  134. this.BtnDelTkan.Name = "BtnDelTkan";
  135. this.BtnDelTkan.Size = new System.Drawing.Size(272, 23);
  136. this.BtnDelTkan.TabIndex = 15;
  137. this.BtnDelTkan.Text = "Удалить выделенную ткань из документа";
  138. this.BtnDelTkan.UseVisualStyleBackColor = false;
  139. this.BtnDelTkan.Click += new System.EventHandler(this.BtnDelTkan_Click);
  140. //
  141. // DgvTkani
  142. //
  143. this.DgvTkani.AllowUserToAddRows = false;
  144. this.DgvTkani.AllowUserToDeleteRows = false;
  145. this.DgvTkani.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  146. this.DgvTkani.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  147. this.Column1,
  148. this.Column2,
  149. this.Column3,
  150. this.Column4,
  151. this.Column5});
  152. this.DgvTkani.Location = new System.Drawing.Point(7, 143);
  153. this.DgvTkani.Margin = new System.Windows.Forms.Padding(2);
  154. this.DgvTkani.MultiSelect = false;
  155. this.DgvTkani.Name = "DgvTkani";
  156. this.DgvTkani.ReadOnly = true;
  157. this.DgvTkani.RowTemplate.Height = 24;
  158. this.DgvTkani.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  159. this.DgvTkani.Size = new System.Drawing.Size(538, 168);
  160. this.DgvTkani.TabIndex = 14;
  161. //
  162. // Column1
  163. //
  164. this.Column1.HeaderText = "Название";
  165. this.Column1.Name = "Column1";
  166. this.Column1.ReadOnly = true;
  167. this.Column1.Width = 150;
  168. //
  169. // Column2
  170. //
  171. this.Column2.HeaderText = "Цвет";
  172. this.Column2.Name = "Column2";
  173. this.Column2.ReadOnly = true;
  174. //
  175. // Column3
  176. //
  177. this.Column3.HeaderText = "Ширина";
  178. this.Column3.Name = "Column3";
  179. this.Column3.ReadOnly = true;
  180. //
  181. // Column4
  182. //
  183. this.Column4.HeaderText = "Длина";
  184. this.Column4.Name = "Column4";
  185. this.Column4.ReadOnly = true;
  186. //
  187. // Column5
  188. //
  189. this.Column5.HeaderText = "Описание";
  190. this.Column5.Name = "Column5";
  191. this.Column5.ReadOnly = true;
  192. this.Column5.Width = 200;
  193. //
  194. // BtnAddTkan
  195. //
  196. this.BtnAddTkan.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(156)))), ((int)(((byte)(26)))));
  197. this.BtnAddTkan.Location = new System.Drawing.Point(7, 107);
  198. this.BtnAddTkan.Margin = new System.Windows.Forms.Padding(2);
  199. this.BtnAddTkan.Name = "BtnAddTkan";
  200. this.BtnAddTkan.Size = new System.Drawing.Size(272, 23);
  201. this.BtnAddTkan.TabIndex = 13;
  202. this.BtnAddTkan.Text = "Добавить эту ткань в документ";
  203. this.BtnAddTkan.UseVisualStyleBackColor = false;
  204. this.BtnAddTkan.Click += new System.EventHandler(this.BtnAddTkan_Click);
  205. //
  206. // BtnClearPhotoTkan
  207. //
  208. this.BtnClearPhotoTkan.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(156)))), ((int)(((byte)(26)))));
  209. this.BtnClearPhotoTkan.Location = new System.Drawing.Point(425, 51);
  210. this.BtnClearPhotoTkan.Margin = new System.Windows.Forms.Padding(2);
  211. this.BtnClearPhotoTkan.Name = "BtnClearPhotoTkan";
  212. this.BtnClearPhotoTkan.Size = new System.Drawing.Size(120, 23);
  213. this.BtnClearPhotoTkan.TabIndex = 12;
  214. this.BtnClearPhotoTkan.Text = "Очистить фото";
  215. this.BtnClearPhotoTkan.UseVisualStyleBackColor = false;
  216. this.BtnClearPhotoTkan.Click += new System.EventHandler(this.BtnClearPhotoTkan_Click);
  217. //
  218. // BtnLoadPhotoTkan
  219. //
  220. this.BtnLoadPhotoTkan.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(156)))), ((int)(((byte)(26)))));
  221. this.BtnLoadPhotoTkan.Location = new System.Drawing.Point(425, 15);
  222. this.BtnLoadPhotoTkan.Margin = new System.Windows.Forms.Padding(2);
  223. this.BtnLoadPhotoTkan.Name = "BtnLoadPhotoTkan";
  224. this.BtnLoadPhotoTkan.Size = new System.Drawing.Size(120, 23);
  225. this.BtnLoadPhotoTkan.TabIndex = 11;
  226. this.BtnLoadPhotoTkan.Text = "Загрузить фото";
  227. this.BtnLoadPhotoTkan.UseVisualStyleBackColor = false;
  228. this.BtnLoadPhotoTkan.Click += new System.EventHandler(this.BtnLoadPhotoTkan_Click);
  229. //
  230. // PbxPhotoTkan
  231. //
  232. this.PbxPhotoTkan.Location = new System.Drawing.Point(298, 12);
  233. this.PbxPhotoTkan.Margin = new System.Windows.Forms.Padding(2);
  234. this.PbxPhotoTkan.Name = "PbxPhotoTkan";
  235. this.PbxPhotoTkan.Size = new System.Drawing.Size(116, 118);
  236. this.PbxPhotoTkan.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  237. this.PbxPhotoTkan.TabIndex = 10;
  238. this.PbxPhotoTkan.TabStop = false;
  239. //
  240. // label6
  241. //
  242. this.label6.AutoSize = true;
  243. this.label6.Location = new System.Drawing.Point(4, 83);
  244. this.label6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  245. this.label6.Name = "label6";
  246. this.label6.Size = new System.Drawing.Size(60, 13);
  247. this.label6.TabIndex = 9;
  248. this.label6.Text = "Описание:";
  249. //
  250. // label5
  251. //
  252. this.label5.AutoSize = true;
  253. this.label5.Location = new System.Drawing.Point(26, 60);
  254. this.label5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  255. this.label5.Name = "label5";
  256. this.label5.Size = new System.Drawing.Size(35, 13);
  257. this.label5.TabIndex = 8;
  258. this.label5.Text = "Цвет:";
  259. //
  260. // label4
  261. //
  262. this.label4.AutoSize = true;
  263. this.label4.Location = new System.Drawing.Point(161, 37);
  264. this.label4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  265. this.label4.Name = "label4";
  266. this.label4.Size = new System.Drawing.Size(43, 13);
  267. this.label4.TabIndex = 7;
  268. this.label4.Text = "Длина:";
  269. //
  270. // label3
  271. //
  272. this.label3.AutoSize = true;
  273. this.label3.Location = new System.Drawing.Point(13, 37);
  274. this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  275. this.label3.Name = "label3";
  276. this.label3.Size = new System.Drawing.Size(49, 13);
  277. this.label3.TabIndex = 6;
  278. this.label3.Text = "Ширина:";
  279. //
  280. // label2
  281. //
  282. this.label2.AutoSize = true;
  283. this.label2.Location = new System.Drawing.Point(3, 15);
  284. this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  285. this.label2.Name = "label2";
  286. this.label2.Size = new System.Drawing.Size(60, 13);
  287. this.label2.TabIndex = 5;
  288. this.label2.Text = "Название:";
  289. //
  290. // TbxDescriptionTkan
  291. //
  292. this.TbxDescriptionTkan.Location = new System.Drawing.Point(64, 80);
  293. this.TbxDescriptionTkan.Margin = new System.Windows.Forms.Padding(2);
  294. this.TbxDescriptionTkan.Name = "TbxDescriptionTkan";
  295. this.TbxDescriptionTkan.Size = new System.Drawing.Size(216, 20);
  296. this.TbxDescriptionTkan.TabIndex = 4;
  297. //
  298. // TbxColorTkan
  299. //
  300. this.TbxColorTkan.Location = new System.Drawing.Point(64, 58);
  301. this.TbxColorTkan.Margin = new System.Windows.Forms.Padding(2);
  302. this.TbxColorTkan.Name = "TbxColorTkan";
  303. this.TbxColorTkan.Size = new System.Drawing.Size(76, 20);
  304. this.TbxColorTkan.TabIndex = 3;
  305. //
  306. // TbxLengthTkan
  307. //
  308. this.TbxLengthTkan.Location = new System.Drawing.Point(204, 35);
  309. this.TbxLengthTkan.Margin = new System.Windows.Forms.Padding(2);
  310. this.TbxLengthTkan.Name = "TbxLengthTkan";
  311. this.TbxLengthTkan.Size = new System.Drawing.Size(76, 20);
  312. this.TbxLengthTkan.TabIndex = 2;
  313. //
  314. // TbxWidthTkan
  315. //
  316. this.TbxWidthTkan.Location = new System.Drawing.Point(64, 35);
  317. this.TbxWidthTkan.Margin = new System.Windows.Forms.Padding(2);
  318. this.TbxWidthTkan.Name = "TbxWidthTkan";
  319. this.TbxWidthTkan.Size = new System.Drawing.Size(76, 20);
  320. this.TbxWidthTkan.TabIndex = 1;
  321. //
  322. // TbxNameTkan
  323. //
  324. this.TbxNameTkan.Location = new System.Drawing.Point(64, 12);
  325. this.TbxNameTkan.Margin = new System.Windows.Forms.Padding(2);
  326. this.TbxNameTkan.Name = "TbxNameTkan";
  327. this.TbxNameTkan.Size = new System.Drawing.Size(216, 20);
  328. this.TbxNameTkan.TabIndex = 0;
  329. //
  330. // tabPage2
  331. //
  332. this.tabPage2.Location = new System.Drawing.Point(4, 22);
  333. this.tabPage2.Margin = new System.Windows.Forms.Padding(2);
  334. this.tabPage2.Name = "tabPage2";
  335. this.tabPage2.Padding = new System.Windows.Forms.Padding(2);
  336. this.tabPage2.Size = new System.Drawing.Size(557, 358);
  337. this.tabPage2.TabIndex = 1;
  338. this.tabPage2.Text = "Добавить в документ фурнитуру";
  339. this.tabPage2.UseVisualStyleBackColor = true;
  340. //
  341. // panel1
  342. //
  343. this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(225)))));
  344. this.panel1.Controls.Add(this.label1);
  345. this.panel1.Controls.Add(this.pictureBox1);
  346. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  347. this.panel1.Location = new System.Drawing.Point(0, 0);
  348. this.panel1.Margin = new System.Windows.Forms.Padding(2);
  349. this.panel1.Name = "panel1";
  350. this.panel1.Size = new System.Drawing.Size(589, 106);
  351. this.panel1.TabIndex = 16;
  352. //
  353. // label1
  354. //
  355. this.label1.AutoSize = true;
  356. this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 13.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  357. this.label1.Location = new System.Drawing.Point(233, 41);
  358. this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  359. this.label1.Name = "label1";
  360. this.label1.Size = new System.Drawing.Size(268, 24);
  361. this.label1.TabIndex = 1;
  362. this.label1.Text = "Получить материал на склад";
  363. //
  364. // pictureBox1
  365. //
  366. this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Left;
  367. this.pictureBox1.Image = global::СУБД_Швейная_фабрика.Properties.Resources.fabric_logo;
  368. this.pictureBox1.Location = new System.Drawing.Point(0, 0);
  369. this.pictureBox1.Margin = new System.Windows.Forms.Padding(2);
  370. this.pictureBox1.Name = "pictureBox1";
  371. this.pictureBox1.Size = new System.Drawing.Size(126, 106);
  372. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  373. this.pictureBox1.TabIndex = 0;
  374. this.pictureBox1.TabStop = false;
  375. //
  376. // FormGetMaterial
  377. //
  378. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  379. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  380. this.BackColor = System.Drawing.Color.White;
  381. this.ClientSize = new System.Drawing.Size(589, 561);
  382. this.Controls.Add(this.BtnCancel);
  383. this.Controls.Add(this.BtnOK);
  384. this.Controls.Add(this.tabControl1);
  385. this.Controls.Add(this.panel1);
  386. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  387. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  388. this.MaximizeBox = false;
  389. this.MinimizeBox = false;
  390. this.Name = "FormGetMaterial";
  391. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  392. this.Text = "СУБД \"Швейная фабрика\"";
  393. this.tabControl1.ResumeLayout(false);
  394. this.tabPage1.ResumeLayout(false);
  395. this.tabPage1.PerformLayout();
  396. ((System.ComponentModel.ISupportInitialize)(this.DgvTkani)).EndInit();
  397. ((System.ComponentModel.ISupportInitialize)(this.PbxPhotoTkan)).EndInit();
  398. this.panel1.ResumeLayout(false);
  399. this.panel1.PerformLayout();
  400. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  401. this.ResumeLayout(false);
  402. }
  403. #endregion
  404. private System.Windows.Forms.Button BtnCancel;
  405. private System.Windows.Forms.Button BtnOK;
  406. private System.Windows.Forms.TabControl tabControl1;
  407. private System.Windows.Forms.TabPage tabPage1;
  408. private System.Windows.Forms.Button BtnDelTkan;
  409. private System.Windows.Forms.DataGridView DgvTkani;
  410. private System.Windows.Forms.DataGridViewTextBoxColumn Column1;
  411. private System.Windows.Forms.DataGridViewTextBoxColumn Column2;
  412. private System.Windows.Forms.DataGridViewTextBoxColumn Column3;
  413. private System.Windows.Forms.DataGridViewTextBoxColumn Column4;
  414. private System.Windows.Forms.DataGridViewTextBoxColumn Column5;
  415. private System.Windows.Forms.Button BtnAddTkan;
  416. private System.Windows.Forms.Button BtnClearPhotoTkan;
  417. private System.Windows.Forms.Button BtnLoadPhotoTkan;
  418. private System.Windows.Forms.PictureBox PbxPhotoTkan;
  419. private System.Windows.Forms.Label label6;
  420. private System.Windows.Forms.Label label5;
  421. private System.Windows.Forms.Label label4;
  422. private System.Windows.Forms.Label label3;
  423. private System.Windows.Forms.Label label2;
  424. private System.Windows.Forms.TextBox TbxDescriptionTkan;
  425. private System.Windows.Forms.TextBox TbxColorTkan;
  426. private System.Windows.Forms.TextBox TbxLengthTkan;
  427. private System.Windows.Forms.TextBox TbxWidthTkan;
  428. private System.Windows.Forms.TextBox TbxNameTkan;
  429. private System.Windows.Forms.TabPage tabPage2;
  430. private System.Windows.Forms.Panel panel1;
  431. private System.Windows.Forms.Label label1;
  432. private System.Windows.Forms.PictureBox pictureBox1;
  433. private System.Windows.Forms.OpenFileDialog openFileDialog1;
  434. }
  435. }