ProsmotrTovarForm.Designer.cs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. 
  2. namespace _09_OOO_StroyMateryali
  3. {
  4. partial class ProsmotrTovarForm
  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.components = new System.ComponentModel.Container();
  30. System.Windows.Forms.Label productNameLabel;
  31. System.Windows.Forms.Label productDescriptionLabel;
  32. System.Windows.Forms.Label productManufacturerLabel;
  33. System.Windows.Forms.Label productCostLabel;
  34. System.Windows.Forms.Label productQuantityInStockLabel;
  35. this.panel1 = new System.Windows.Forms.Panel();
  36. this.label3 = new System.Windows.Forms.Label();
  37. this.productBindingSource = new System.Windows.Forms.BindingSource(this.components);
  38. this.tradebaseDataSet = new _09_OOO_StroyMateryali.TradebaseDataSet();
  39. this.productTableAdapter = new _09_OOO_StroyMateryali.TradebaseDataSetTableAdapters.ProductTableAdapter();
  40. this.ExitButton = new System.Windows.Forms.Button();
  41. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  42. this.tableAdapterManager = new _09_OOO_StroyMateryali.TradebaseDataSetTableAdapters.TableAdapterManager();
  43. this.productNameTextBox = new System.Windows.Forms.TextBox();
  44. this.productDescriptionTextBox = new System.Windows.Forms.TextBox();
  45. this.productManufacturerTextBox = new System.Windows.Forms.TextBox();
  46. this.productCostTextBox = new System.Windows.Forms.TextBox();
  47. this.productQuantityInStockTextBox = new System.Windows.Forms.TextBox();
  48. productNameLabel = new System.Windows.Forms.Label();
  49. productDescriptionLabel = new System.Windows.Forms.Label();
  50. productManufacturerLabel = new System.Windows.Forms.Label();
  51. productCostLabel = new System.Windows.Forms.Label();
  52. productQuantityInStockLabel = new System.Windows.Forms.Label();
  53. this.panel1.SuspendLayout();
  54. ((System.ComponentModel.ISupportInitialize)(this.productBindingSource)).BeginInit();
  55. ((System.ComponentModel.ISupportInitialize)(this.tradebaseDataSet)).BeginInit();
  56. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  57. this.SuspendLayout();
  58. //
  59. // panel1
  60. //
  61. this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(118)))), ((int)(((byte)(227)))), ((int)(((byte)(131)))));
  62. this.panel1.Controls.Add(this.label3);
  63. this.panel1.Location = new System.Drawing.Point(0, 0);
  64. this.panel1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  65. this.panel1.Name = "panel1";
  66. this.panel1.Size = new System.Drawing.Size(1209, 115);
  67. this.panel1.TabIndex = 8;
  68. //
  69. // label3
  70. //
  71. this.label3.AutoSize = true;
  72. this.label3.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  73. this.label3.Location = new System.Drawing.Point(486, 24);
  74. this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  75. this.label3.Name = "label3";
  76. this.label3.Size = new System.Drawing.Size(266, 58);
  77. this.label3.TabIndex = 0;
  78. this.label3.Text = " Список товаров \r\nООО «Стройматериалы»";
  79. //
  80. // productBindingSource
  81. //
  82. this.productBindingSource.DataMember = "Product";
  83. this.productBindingSource.DataSource = this.tradebaseDataSet;
  84. //
  85. // tradebaseDataSet
  86. //
  87. this.tradebaseDataSet.DataSetName = "TradebaseDataSet";
  88. this.tradebaseDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
  89. //
  90. // productTableAdapter
  91. //
  92. this.productTableAdapter.ClearBeforeFill = true;
  93. //
  94. // ExitButton
  95. //
  96. this.ExitButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  97. this.ExitButton.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  98. this.ExitButton.Location = new System.Drawing.Point(512, 503);
  99. this.ExitButton.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  100. this.ExitButton.Name = "ExitButton";
  101. this.ExitButton.Size = new System.Drawing.Size(213, 75);
  102. this.ExitButton.TabIndex = 10;
  103. this.ExitButton.Text = "Выход";
  104. this.ExitButton.UseVisualStyleBackColor = true;
  105. //
  106. // pictureBox1
  107. //
  108. this.pictureBox1.Location = new System.Drawing.Point(18, 125);
  109. this.pictureBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  110. this.pictureBox1.Name = "pictureBox1";
  111. this.pictureBox1.Size = new System.Drawing.Size(456, 329);
  112. this.pictureBox1.TabIndex = 11;
  113. this.pictureBox1.TabStop = false;
  114. //
  115. // tableAdapterManager
  116. //
  117. this.tableAdapterManager.BackupDataSetBeforeUpdate = false;
  118. this.tableAdapterManager.OrderProductTableAdapter = null;
  119. this.tableAdapterManager.OrderTableAdapter = null;
  120. this.tableAdapterManager.ProductTableAdapter = this.productTableAdapter;
  121. this.tableAdapterManager.punkt_vydachyTableAdapter = null;
  122. this.tableAdapterManager.RoleTableAdapter = null;
  123. this.tableAdapterManager.UpdateOrder = _09_OOO_StroyMateryali.TradebaseDataSetTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
  124. this.tableAdapterManager.UserTableAdapter = null;
  125. //
  126. // productNameLabel
  127. //
  128. productNameLabel.AutoSize = true;
  129. productNameLabel.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  130. productNameLabel.Location = new System.Drawing.Point(507, 148);
  131. productNameLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  132. productNameLabel.Name = "productNameLabel";
  133. productNameLabel.Size = new System.Drawing.Size(111, 20);
  134. productNameLabel.TabIndex = 11;
  135. productNameLabel.Text = "Product Name:";
  136. //
  137. // productNameTextBox
  138. //
  139. this.productNameTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.productBindingSource, "ProductName", true));
  140. this.productNameTextBox.Location = new System.Drawing.Point(686, 145);
  141. this.productNameTextBox.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  142. this.productNameTextBox.Name = "productNameTextBox";
  143. this.productNameTextBox.Size = new System.Drawing.Size(148, 28);
  144. this.productNameTextBox.TabIndex = 12;
  145. //
  146. // productDescriptionLabel
  147. //
  148. productDescriptionLabel.AutoSize = true;
  149. productDescriptionLabel.Font = new System.Drawing.Font("Comic Sans MS", 11.25F);
  150. productDescriptionLabel.Location = new System.Drawing.Point(507, 218);
  151. productDescriptionLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  152. productDescriptionLabel.Name = "productDescriptionLabel";
  153. productDescriptionLabel.Size = new System.Drawing.Size(152, 20);
  154. productDescriptionLabel.TabIndex = 12;
  155. productDescriptionLabel.Text = "Product Description:";
  156. //
  157. // productDescriptionTextBox
  158. //
  159. this.productDescriptionTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.productBindingSource, "ProductDescription", true));
  160. this.productDescriptionTextBox.Location = new System.Drawing.Point(686, 215);
  161. this.productDescriptionTextBox.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  162. this.productDescriptionTextBox.Name = "productDescriptionTextBox";
  163. this.productDescriptionTextBox.Size = new System.Drawing.Size(148, 28);
  164. this.productDescriptionTextBox.TabIndex = 13;
  165. //
  166. // productManufacturerLabel
  167. //
  168. productManufacturerLabel.AutoSize = true;
  169. productManufacturerLabel.Font = new System.Drawing.Font("Comic Sans MS", 11.25F);
  170. productManufacturerLabel.Location = new System.Drawing.Point(507, 291);
  171. productManufacturerLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  172. productManufacturerLabel.Name = "productManufacturerLabel";
  173. productManufacturerLabel.Size = new System.Drawing.Size(170, 20);
  174. productManufacturerLabel.TabIndex = 13;
  175. productManufacturerLabel.Text = "Product Manufacturer:";
  176. //
  177. // productManufacturerTextBox
  178. //
  179. this.productManufacturerTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.productBindingSource, "ProductManufacturer", true));
  180. this.productManufacturerTextBox.Location = new System.Drawing.Point(686, 286);
  181. this.productManufacturerTextBox.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  182. this.productManufacturerTextBox.Name = "productManufacturerTextBox";
  183. this.productManufacturerTextBox.Size = new System.Drawing.Size(148, 28);
  184. this.productManufacturerTextBox.TabIndex = 14;
  185. //
  186. // productCostLabel
  187. //
  188. productCostLabel.AutoSize = true;
  189. productCostLabel.Location = new System.Drawing.Point(518, 371);
  190. productCostLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  191. productCostLabel.Name = "productCostLabel";
  192. productCostLabel.Size = new System.Drawing.Size(103, 20);
  193. productCostLabel.TabIndex = 14;
  194. productCostLabel.Text = "Product Cost:";
  195. //
  196. // productCostTextBox
  197. //
  198. this.productCostTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.productBindingSource, "ProductCost", true));
  199. this.productCostTextBox.Location = new System.Drawing.Point(686, 363);
  200. this.productCostTextBox.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  201. this.productCostTextBox.Name = "productCostTextBox";
  202. this.productCostTextBox.Size = new System.Drawing.Size(148, 28);
  203. this.productCostTextBox.TabIndex = 15;
  204. //
  205. // productQuantityInStockLabel
  206. //
  207. productQuantityInStockLabel.AutoSize = true;
  208. productQuantityInStockLabel.Location = new System.Drawing.Point(995, 218);
  209. productQuantityInStockLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  210. productQuantityInStockLabel.Name = "productQuantityInStockLabel";
  211. productQuantityInStockLabel.Size = new System.Drawing.Size(201, 20);
  212. productQuantityInStockLabel.TabIndex = 15;
  213. productQuantityInStockLabel.Text = "Product Quantity In Stock:";
  214. //
  215. // productQuantityInStockTextBox
  216. //
  217. this.productQuantityInStockTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.productBindingSource, "ProductQuantityInStock", true));
  218. this.productQuantityInStockTextBox.Font = new System.Drawing.Font("Comic Sans MS", 26.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  219. this.productQuantityInStockTextBox.Location = new System.Drawing.Point(1021, 258);
  220. this.productQuantityInStockTextBox.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  221. this.productQuantityInStockTextBox.Multiline = true;
  222. this.productQuantityInStockTextBox.Name = "productQuantityInStockTextBox";
  223. this.productQuantityInStockTextBox.Size = new System.Drawing.Size(148, 84);
  224. this.productQuantityInStockTextBox.TabIndex = 16;
  225. this.productQuantityInStockTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  226. //
  227. // ProsmotrTovarForm
  228. //
  229. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
  230. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  231. this.BackColor = System.Drawing.Color.White;
  232. this.ClientSize = new System.Drawing.Size(1209, 609);
  233. this.Controls.Add(productQuantityInStockLabel);
  234. this.Controls.Add(this.productQuantityInStockTextBox);
  235. this.Controls.Add(productCostLabel);
  236. this.Controls.Add(this.productCostTextBox);
  237. this.Controls.Add(productManufacturerLabel);
  238. this.Controls.Add(this.productManufacturerTextBox);
  239. this.Controls.Add(productDescriptionLabel);
  240. this.Controls.Add(this.productDescriptionTextBox);
  241. this.Controls.Add(productNameLabel);
  242. this.Controls.Add(this.productNameTextBox);
  243. this.Controls.Add(this.pictureBox1);
  244. this.Controls.Add(this.ExitButton);
  245. this.Controls.Add(this.panel1);
  246. this.Font = new System.Drawing.Font("Comic Sans MS", 11.25F);
  247. this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  248. this.Name = "ProsmotrTovarForm";
  249. this.Text = "Товары";
  250. this.Load += new System.EventHandler(this.ProsmotrTovarForm_Load);
  251. this.panel1.ResumeLayout(false);
  252. this.panel1.PerformLayout();
  253. ((System.ComponentModel.ISupportInitialize)(this.productBindingSource)).EndInit();
  254. ((System.ComponentModel.ISupportInitialize)(this.tradebaseDataSet)).EndInit();
  255. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  256. this.ResumeLayout(false);
  257. this.PerformLayout();
  258. }
  259. #endregion
  260. private System.Windows.Forms.Panel panel1;
  261. private System.Windows.Forms.Label label3;
  262. private TradebaseDataSet tradebaseDataSet;
  263. private System.Windows.Forms.BindingSource productBindingSource;
  264. private TradebaseDataSetTableAdapters.ProductTableAdapter productTableAdapter;
  265. private System.Windows.Forms.Button ExitButton;
  266. private System.Windows.Forms.PictureBox pictureBox1;
  267. private TradebaseDataSetTableAdapters.TableAdapterManager tableAdapterManager;
  268. private System.Windows.Forms.TextBox productNameTextBox;
  269. private System.Windows.Forms.TextBox productDescriptionTextBox;
  270. private System.Windows.Forms.TextBox productManufacturerTextBox;
  271. private System.Windows.Forms.TextBox productCostTextBox;
  272. private System.Windows.Forms.TextBox productQuantityInStockTextBox;
  273. }
  274. }