Товары.Designer.cs 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. namespace WindowsFormsApp1
  2. {
  3. partial class SeeForm
  4. {
  5. /// <summary>
  6. /// Обязательная переменная конструктора.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Освободить все используемые ресурсы.
  11. /// </summary>
  12. /// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</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
  22. /// <summary>
  23. /// Требуемый метод для поддержки конструктора — не изменяйте
  24. /// содержимое этого метода с помощью редактора кода.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SeeForm));
  29. this.AddButton = new System.Windows.Forms.Button();
  30. this.dataGridView1 = new System.Windows.Forms.DataGridView();
  31. this.DeleteButton = new System.Windows.Forms.Button();
  32. this.BackButton = new System.Windows.Forms.Button();
  33. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  34. this.SuspendLayout();
  35. //
  36. // AddButton
  37. //
  38. this.AddButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  39. this.AddButton.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  40. this.AddButton.Location = new System.Drawing.Point(21, 374);
  41. this.AddButton.Name = "AddButton";
  42. this.AddButton.Size = new System.Drawing.Size(80, 25);
  43. this.AddButton.TabIndex = 1;
  44. this.AddButton.Text = "Добавить";
  45. this.AddButton.UseVisualStyleBackColor = true;
  46. this.AddButton.Click += new System.EventHandler(this.button1_Click);
  47. //
  48. // dataGridView1
  49. //
  50. this.dataGridView1.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(118)))), ((int)(((byte)(227)))), ((int)(((byte)(131)))));
  51. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  52. this.dataGridView1.Location = new System.Drawing.Point(12, 12);
  53. this.dataGridView1.Name = "dataGridView1";
  54. this.dataGridView1.Size = new System.Drawing.Size(760, 349);
  55. this.dataGridView1.TabIndex = 2;
  56. //
  57. // DeleteButton
  58. //
  59. this.DeleteButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  60. this.DeleteButton.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  61. this.DeleteButton.Location = new System.Drawing.Point(124, 374);
  62. this.DeleteButton.Name = "DeleteButton";
  63. this.DeleteButton.Size = new System.Drawing.Size(80, 25);
  64. this.DeleteButton.TabIndex = 3;
  65. this.DeleteButton.Text = "Удалить";
  66. this.DeleteButton.UseVisualStyleBackColor = true;
  67. this.DeleteButton.Click += new System.EventHandler(this.DeleteButton_Click);
  68. //
  69. // BackButton
  70. //
  71. this.BackButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  72. this.BackButton.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  73. this.BackButton.Location = new System.Drawing.Point(673, 374);
  74. this.BackButton.Name = "BackButton";
  75. this.BackButton.Size = new System.Drawing.Size(99, 25);
  76. this.BackButton.TabIndex = 4;
  77. this.BackButton.Text = "Назад";
  78. this.BackButton.UseVisualStyleBackColor = true;
  79. this.BackButton.Click += new System.EventHandler(this.BackButton_Click);
  80. //
  81. // SeeForm
  82. //
  83. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  84. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  85. this.BackColor = System.Drawing.Color.White;
  86. this.ClientSize = new System.Drawing.Size(784, 411);
  87. this.Controls.Add(this.BackButton);
  88. this.Controls.Add(this.DeleteButton);
  89. this.Controls.Add(this.dataGridView1);
  90. this.Controls.Add(this.AddButton);
  91. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  92. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  93. this.MaximizeBox = false;
  94. this.MinimizeBox = false;
  95. this.Name = "SeeForm";
  96. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  97. this.Text = "Товары";
  98. this.Load += new System.EventHandler(this.Form1_Load);
  99. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  100. this.ResumeLayout(false);
  101. }
  102. #endregion
  103. private System.Windows.Forms.Button AddButton;
  104. private System.Windows.Forms.DataGridView dataGridView1;
  105. private System.Windows.Forms.Button DeleteButton;
  106. private System.Windows.Forms.Button BackButton;
  107. }
  108. }