namespace LawFirmView { partial class FormDocument { /// /// 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() { this.groupBox1 = new System.Windows.Forms.GroupBox(); this.dataGridView = new System.Windows.Forms.DataGridView(); this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.buttonAdd = new System.Windows.Forms.Button(); this.buttonUpd = new System.Windows.Forms.Button(); this.buttonDel = new System.Windows.Forms.Button(); this.buttonRef = new System.Windows.Forms.Button(); this.buttonSave = new System.Windows.Forms.Button(); this.buttonCancel = new System.Windows.Forms.Button(); this.textBoxName = new System.Windows.Forms.TextBox(); this.textBoxPrice = new System.Windows.Forms.TextBox(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.groupBox1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit(); this.SuspendLayout(); // // groupBox1 // this.groupBox1.Controls.Add(this.buttonRef); this.groupBox1.Controls.Add(this.buttonDel); this.groupBox1.Controls.Add(this.buttonUpd); this.groupBox1.Controls.Add(this.buttonAdd); this.groupBox1.Controls.Add(this.dataGridView); this.groupBox1.Location = new System.Drawing.Point(58, 98); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(605, 288); this.groupBox1.TabIndex = 0; this.groupBox1.TabStop = false; this.groupBox1.Text = "Компоненты"; // // dataGridView // this.dataGridView.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.Column1, this.Column2, this.Column3}); this.dataGridView.Location = new System.Drawing.Point(3, 19); this.dataGridView.Name = "dataGridView"; this.dataGridView.RowTemplate.Height = 25; this.dataGridView.Size = new System.Drawing.Size(413, 254); this.dataGridView.TabIndex = 0; // // Column1 // this.Column1.HeaderText = "id"; this.Column1.Name = "Column1"; this.Column1.Visible = false; // // Column2 // this.Column2.HeaderText = "Компонент"; this.Column2.Name = "Column2"; // // Column3 // this.Column3.HeaderText = "Количество"; this.Column3.Name = "Column3"; // // buttonAdd // this.buttonAdd.Location = new System.Drawing.Point(476, 19); this.buttonAdd.Name = "buttonAdd"; this.buttonAdd.Size = new System.Drawing.Size(75, 23); this.buttonAdd.TabIndex = 1; this.buttonAdd.Text = "Добавить"; this.buttonAdd.UseVisualStyleBackColor = true; this.buttonAdd.Click += new System.EventHandler(this.buttonAdd_Click); // // buttonUpd // this.buttonUpd.Location = new System.Drawing.Point(476, 61); this.buttonUpd.Name = "buttonUpd"; this.buttonUpd.Size = new System.Drawing.Size(75, 23); this.buttonUpd.TabIndex = 2; this.buttonUpd.Text = "Изменить"; this.buttonUpd.UseVisualStyleBackColor = true; this.buttonUpd.Click += new System.EventHandler(this.buttonUpd_Click); // // buttonDel // this.buttonDel.Location = new System.Drawing.Point(476, 108); this.buttonDel.Name = "buttonDel"; this.buttonDel.Size = new System.Drawing.Size(75, 23); this.buttonDel.TabIndex = 3; this.buttonDel.Text = "Удалить"; this.buttonDel.UseVisualStyleBackColor = true; this.buttonDel.Click += new System.EventHandler(this.buttonDel_Click); // // buttonRef // this.buttonRef.Location = new System.Drawing.Point(476, 156); this.buttonRef.Name = "buttonRef"; this.buttonRef.Size = new System.Drawing.Size(75, 23); this.buttonRef.TabIndex = 4; this.buttonRef.Text = "Обновить"; this.buttonRef.UseVisualStyleBackColor = true; this.buttonRef.Click += new System.EventHandler(this.buttonRef_Click); // // buttonSave // this.buttonSave.Location = new System.Drawing.Point(427, 403); this.buttonSave.Name = "buttonSave"; this.buttonSave.Size = new System.Drawing.Size(75, 23); this.buttonSave.TabIndex = 1; this.buttonSave.Text = "Сохранить"; this.buttonSave.UseVisualStyleBackColor = true; this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click); // // buttonCancel // this.buttonCancel.Location = new System.Drawing.Point(534, 403); this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(75, 23); this.buttonCancel.TabIndex = 2; this.buttonCancel.Text = "Отмена"; this.buttonCancel.UseVisualStyleBackColor = true; this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click); // // textBoxName // this.textBoxName.Location = new System.Drawing.Point(102, 12); this.textBoxName.Name = "textBoxName"; this.textBoxName.Size = new System.Drawing.Size(205, 23); this.textBoxName.TabIndex = 3; // // textBoxPrice // this.textBoxPrice.Location = new System.Drawing.Point(102, 41); this.textBoxPrice.Name = "textBoxPrice"; this.textBoxPrice.Size = new System.Drawing.Size(151, 23); this.textBoxPrice.TabIndex = 4; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(12, 12); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(62, 15); this.label1.TabIndex = 5; this.label1.Text = "Название:"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(12, 41); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(70, 15); this.label2.TabIndex = 6; this.label2.Text = "Стоимость:"; // // FormDocument // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(691, 450); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.textBoxPrice); this.Controls.Add(this.textBoxName); this.Controls.Add(this.buttonCancel); this.Controls.Add(this.buttonSave); this.Controls.Add(this.groupBox1); this.Name = "FormDocument"; this.Text = "Пакет документов"; this.Load += new System.EventHandler(this.FormDocument_Load); this.groupBox1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private GroupBox groupBox1; private Button buttonRef; private Button buttonDel; private Button buttonUpd; private Button buttonAdd; private DataGridView dataGridView; private DataGridViewTextBoxColumn Column1; private DataGridViewTextBoxColumn Column2; private DataGridViewTextBoxColumn Column3; private Button buttonSave; private Button buttonCancel; private TextBox textBoxName; private TextBox textBoxPrice; private Label label1; private Label label2; } }