namespace ProjectLibrary.Forms { partial class FOrders { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { dataGridViewOrders = new DataGridView(); buttonAdd = new Button(); buttonRemove = new Button(); ((System.ComponentModel.ISupportInitialize)dataGridViewOrders).BeginInit(); SuspendLayout(); // // dataGridViewOrders // dataGridViewOrders.AllowUserToAddRows = false; dataGridViewOrders.AllowUserToDeleteRows = false; dataGridViewOrders.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize; dataGridViewOrders.Location = new Point(11, 12); dataGridViewOrders.Name = "dataGridViewOrders"; dataGridViewOrders.ReadOnly = true; dataGridViewOrders.RowHeadersWidth = 51; dataGridViewOrders.SelectionMode = DataGridViewSelectionMode.FullRowSelect; dataGridViewOrders.Size = new Size(600, 300); dataGridViewOrders.TabIndex = 4; // // buttonAdd // buttonAdd.Location = new Point(11, 332); buttonAdd.Name = "buttonAdd"; buttonAdd.Size = new Size(101, 29); buttonAdd.TabIndex = 5; buttonAdd.Text = "Добавить"; buttonAdd.Click += buttonAdd_Click; // // buttonRemove // buttonRemove.Location = new Point(512, 332); buttonRemove.Name = "buttonRemove"; buttonRemove.Size = new Size(101, 29); buttonRemove.TabIndex = 7; buttonRemove.Text = "Удалить"; buttonRemove.Click += buttonRemove_Click; // // FOrders // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(630, 412); Controls.Add(dataGridViewOrders); Controls.Add(buttonAdd); Controls.Add(buttonRemove); Name = "FOrders"; Text = "FOrders"; Load += FOrders_Load; ((System.ComponentModel.ISupportInitialize)dataGridViewOrders).EndInit(); ResumeLayout(false); } #endregion private DataGridView dataGridViewOrders; private Button buttonAdd; private Button buttonRemove; } }