namespace DataBase { partial class MainForm { /// /// Обязательная переменная конструктора. /// private System.ComponentModel.IContainer components = null; /// /// Освободить все используемые ресурсы. /// /// истинно, если управляемый ресурс должен быть удален; иначе ложно. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Код, автоматически созданный конструктором форм Windows /// /// Требуемый метод для поддержки конструктора — не изменяйте /// содержимое этого метода с помощью редактора кода. /// private void InitializeComponent() { this.label1 = new System.Windows.Forms.Label(); this.buttonAdd = new System.Windows.Forms.Button(); this.mainDataBaseGrid = new System.Windows.Forms.DataGridView(); this.buttonDelete = new System.Windows.Forms.Button(); this.buttonEdit = new System.Windows.Forms.Button(); this.buttonQuery = new System.Windows.Forms.Button(); this.comboBoxQuery = new System.Windows.Forms.ComboBox(); this.comboBoxTables = new System.Windows.Forms.ComboBox(); this.label2 = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(this.mainDataBaseGrid)).BeginInit(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(18, 15); this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(73, 20); this.label1.TabIndex = 1; this.label1.Text = "Таблица"; // // buttonAdd // this.buttonAdd.Location = new System.Drawing.Point(18, 82); this.buttonAdd.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.buttonAdd.Name = "buttonAdd"; this.buttonAdd.Size = new System.Drawing.Size(112, 35); this.buttonAdd.TabIndex = 2; this.buttonAdd.Text = "Добавить"; this.buttonAdd.UseVisualStyleBackColor = true; this.buttonAdd.Click += new System.EventHandler(this.buttonAddNewItem_Click); // // mainDataBaseGrid // this.mainDataBaseGrid.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.mainDataBaseGrid.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells; this.mainDataBaseGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.mainDataBaseGrid.Location = new System.Drawing.Point(208, 18); this.mainDataBaseGrid.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.mainDataBaseGrid.Name = "mainDataBaseGrid"; this.mainDataBaseGrid.ReadOnly = true; this.mainDataBaseGrid.Size = new System.Drawing.Size(1239, 655); this.mainDataBaseGrid.TabIndex = 3; // // buttonDelete // this.buttonDelete.Location = new System.Drawing.Point(18, 171); this.buttonDelete.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.buttonDelete.Name = "buttonDelete"; this.buttonDelete.Size = new System.Drawing.Size(112, 35); this.buttonDelete.TabIndex = 4; this.buttonDelete.Text = "Удалить"; this.buttonDelete.UseVisualStyleBackColor = true; this.buttonDelete.Click += new System.EventHandler(this.buttonDelete_Click); // // buttonEdit // this.buttonEdit.Location = new System.Drawing.Point(18, 126); this.buttonEdit.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.buttonEdit.Name = "buttonEdit"; this.buttonEdit.Size = new System.Drawing.Size(112, 35); this.buttonEdit.TabIndex = 5; this.buttonEdit.Text = "Изменить"; this.buttonEdit.UseVisualStyleBackColor = true; this.buttonEdit.Click += new System.EventHandler(this.buttonEdit_Click); // // buttonQuery // this.buttonQuery.Location = new System.Drawing.Point(18, 297); this.buttonQuery.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.buttonQuery.Name = "buttonQuery"; this.buttonQuery.Size = new System.Drawing.Size(112, 35); this.buttonQuery.TabIndex = 6; this.buttonQuery.Text = "Выполнить"; this.buttonQuery.UseVisualStyleBackColor = true; this.buttonQuery.Click += new System.EventHandler(this.buttonQuery_Click); // // comboBoxQuery // this.comboBoxQuery.FormattingEnabled = true; this.comboBoxQuery.Location = new System.Drawing.Point(18, 255); this.comboBoxQuery.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.comboBoxQuery.Name = "comboBoxQuery"; this.comboBoxQuery.Size = new System.Drawing.Size(180, 28); this.comboBoxQuery.Sorted = true; this.comboBoxQuery.TabIndex = 7; // // comboBoxTables // this.comboBoxTables.FormattingEnabled = true; this.comboBoxTables.Location = new System.Drawing.Point(18, 40); this.comboBoxTables.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.comboBoxTables.Name = "comboBoxTables"; this.comboBoxTables.Size = new System.Drawing.Size(180, 28); this.comboBoxTables.Sorted = true; this.comboBoxTables.TabIndex = 0; this.comboBoxTables.SelectedIndexChanged += new System.EventHandler(this.comboBoxTables_SelectedIndexChanged); // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(14, 231); this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(64, 20); this.label2.TabIndex = 8; this.label2.Text = "Запрос"; // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1466, 692); this.Controls.Add(this.label2); this.Controls.Add(this.comboBoxQuery); this.Controls.Add(this.buttonQuery); this.Controls.Add(this.buttonEdit); this.Controls.Add(this.buttonDelete); this.Controls.Add(this.mainDataBaseGrid); this.Controls.Add(this.buttonAdd); this.Controls.Add(this.label1); this.Controls.Add(this.comboBoxTables); this.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.Name = "MainForm"; this.Text = "Оружейный магазин"; this.Load += new System.EventHandler(this.MainForm_Load); ((System.ComponentModel.ISupportInitialize)(this.mainDataBaseGrid)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.Button buttonAdd; private System.Windows.Forms.Button buttonDelete; private System.Windows.Forms.Button buttonEdit; public System.Windows.Forms.DataGridView mainDataBaseGrid; private System.Windows.Forms.Button buttonQuery; public System.Windows.Forms.ComboBox comboBoxQuery; public System.Windows.Forms.ComboBox comboBoxTables; private System.Windows.Forms.Label label2; } }