saleTovar.Designer.cs 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. 
  2. namespace Brovi07.session1
  3. {
  4. partial class saleTovar
  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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(saleTovar));
  31. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  32. this.panel1 = new System.Windows.Forms.Panel();
  33. this.label1 = new System.Windows.Forms.Label();
  34. this.dataGridView1 = new System.Windows.Forms.DataGridView();
  35. this.saleDateDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  36. this.productIDDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  37. this.quantityDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  38. this.productSaleBindingSource = new System.Windows.Forms.BindingSource(this.components);
  39. this.broviDataSet = new Brovi07.BroviDataSet();
  40. this.productSaleTableAdapter = new Brovi07.BroviDataSetTableAdapters.ProductSaleTableAdapter();
  41. this.exitButton = new System.Windows.Forms.Button();
  42. this.filtrButton = new System.Windows.Forms.Button();
  43. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  44. this.panel1.SuspendLayout();
  45. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  46. ((System.ComponentModel.ISupportInitialize)(this.productSaleBindingSource)).BeginInit();
  47. ((System.ComponentModel.ISupportInitialize)(this.broviDataSet)).BeginInit();
  48. this.SuspendLayout();
  49. //
  50. // pictureBox1
  51. //
  52. this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
  53. this.pictureBox1.Location = new System.Drawing.Point(0, 0);
  54. this.pictureBox1.Name = "pictureBox1";
  55. this.pictureBox1.Size = new System.Drawing.Size(82, 84);
  56. this.pictureBox1.TabIndex = 3;
  57. this.pictureBox1.TabStop = false;
  58. //
  59. // panel1
  60. //
  61. this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(74)))), ((int)(((byte)(109)))));
  62. this.panel1.Controls.Add(this.filtrButton);
  63. this.panel1.Controls.Add(this.label1);
  64. this.panel1.Location = new System.Drawing.Point(82, 0);
  65. this.panel1.Name = "panel1";
  66. this.panel1.Size = new System.Drawing.Size(722, 86);
  67. this.panel1.TabIndex = 2;
  68. //
  69. // label1
  70. //
  71. this.label1.AutoSize = true;
  72. this.label1.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  73. this.label1.Location = new System.Drawing.Point(7, 29);
  74. this.label1.Name = "label1";
  75. this.label1.Size = new System.Drawing.Size(175, 23);
  76. this.label1.TabIndex = 3;
  77. this.label1.Text = "История продаж";
  78. //
  79. // dataGridView1
  80. //
  81. this.dataGridView1.AutoGenerateColumns = false;
  82. this.dataGridView1.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(225)))), ((int)(((byte)(228)))), ((int)(((byte)(255)))));
  83. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  84. this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  85. this.saleDateDataGridViewTextBoxColumn,
  86. this.productIDDataGridViewTextBoxColumn,
  87. this.quantityDataGridViewTextBoxColumn});
  88. this.dataGridView1.DataSource = this.productSaleBindingSource;
  89. this.dataGridView1.Location = new System.Drawing.Point(0, 86);
  90. this.dataGridView1.Name = "dataGridView1";
  91. this.dataGridView1.Size = new System.Drawing.Size(551, 282);
  92. this.dataGridView1.TabIndex = 4;
  93. //
  94. // saleDateDataGridViewTextBoxColumn
  95. //
  96. this.saleDateDataGridViewTextBoxColumn.DataPropertyName = "SaleDate";
  97. this.saleDateDataGridViewTextBoxColumn.HeaderText = "Дата продажи";
  98. this.saleDateDataGridViewTextBoxColumn.Name = "saleDateDataGridViewTextBoxColumn";
  99. //
  100. // productIDDataGridViewTextBoxColumn
  101. //
  102. this.productIDDataGridViewTextBoxColumn.DataPropertyName = "ProductID";
  103. this.productIDDataGridViewTextBoxColumn.HeaderText = "ID продукта";
  104. this.productIDDataGridViewTextBoxColumn.Name = "productIDDataGridViewTextBoxColumn";
  105. //
  106. // quantityDataGridViewTextBoxColumn
  107. //
  108. this.quantityDataGridViewTextBoxColumn.DataPropertyName = "Quantity";
  109. this.quantityDataGridViewTextBoxColumn.HeaderText = "Количество";
  110. this.quantityDataGridViewTextBoxColumn.Name = "quantityDataGridViewTextBoxColumn";
  111. //
  112. // productSaleBindingSource
  113. //
  114. this.productSaleBindingSource.DataMember = "ProductSale";
  115. this.productSaleBindingSource.DataSource = this.broviDataSet;
  116. //
  117. // broviDataSet
  118. //
  119. this.broviDataSet.DataSetName = "BroviDataSet";
  120. this.broviDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
  121. //
  122. // productSaleTableAdapter
  123. //
  124. this.productSaleTableAdapter.ClearBeforeFill = true;
  125. //
  126. // exitButton
  127. //
  128. this.exitButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  129. this.exitButton.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  130. this.exitButton.Location = new System.Drawing.Point(409, 374);
  131. this.exitButton.Name = "exitButton";
  132. this.exitButton.Size = new System.Drawing.Size(129, 37);
  133. this.exitButton.TabIndex = 8;
  134. this.exitButton.Text = "Выход";
  135. this.exitButton.UseVisualStyleBackColor = true;
  136. this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
  137. //
  138. // filtrButton
  139. //
  140. this.filtrButton.BackColor = System.Drawing.Color.White;
  141. this.filtrButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  142. this.filtrButton.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  143. this.filtrButton.Location = new System.Drawing.Point(254, 12);
  144. this.filtrButton.Name = "filtrButton";
  145. this.filtrButton.Size = new System.Drawing.Size(202, 37);
  146. this.filtrButton.TabIndex = 9;
  147. this.filtrButton.Text = "Фильтрация по дате";
  148. this.filtrButton.UseVisualStyleBackColor = false;
  149. this.filtrButton.Click += new System.EventHandler(this.filtrButton_Click);
  150. //
  151. // saleTovar
  152. //
  153. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  154. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  155. this.BackColor = System.Drawing.Color.White;
  156. this.ClientSize = new System.Drawing.Size(550, 422);
  157. this.Controls.Add(this.exitButton);
  158. this.Controls.Add(this.dataGridView1);
  159. this.Controls.Add(this.pictureBox1);
  160. this.Controls.Add(this.panel1);
  161. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  162. this.Name = "saleTovar";
  163. this.Text = "История продаж";
  164. this.Load += new System.EventHandler(this.saleTovar_Load);
  165. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  166. this.panel1.ResumeLayout(false);
  167. this.panel1.PerformLayout();
  168. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  169. ((System.ComponentModel.ISupportInitialize)(this.productSaleBindingSource)).EndInit();
  170. ((System.ComponentModel.ISupportInitialize)(this.broviDataSet)).EndInit();
  171. this.ResumeLayout(false);
  172. }
  173. #endregion
  174. private System.Windows.Forms.PictureBox pictureBox1;
  175. private System.Windows.Forms.Panel panel1;
  176. private System.Windows.Forms.Label label1;
  177. private System.Windows.Forms.DataGridView dataGridView1;
  178. private BroviDataSet broviDataSet;
  179. private System.Windows.Forms.BindingSource productSaleBindingSource;
  180. private BroviDataSetTableAdapters.ProductSaleTableAdapter productSaleTableAdapter;
  181. private System.Windows.Forms.DataGridViewTextBoxColumn saleDateDataGridViewTextBoxColumn;
  182. private System.Windows.Forms.DataGridViewTextBoxColumn productIDDataGridViewTextBoxColumn;
  183. private System.Windows.Forms.DataGridViewTextBoxColumn quantityDataGridViewTextBoxColumn;
  184. private System.Windows.Forms.Button exitButton;
  185. private System.Windows.Forms.Button filtrButton;
  186. }
  187. }