SUBD_Gerimovich_Ilya_PIbd-22/FurnitureAssembly/FurnitureAssemblyView/FormKomments.Designer.cs

121 lines
5.4 KiB
C#
Raw Normal View History

2024-05-24 12:23:50 +04:00
namespace FurnitureAssemblyView
{
2024-05-24 13:42:42 +04:00
partial class FormKomments
2024-05-24 12:23:50 +04:00
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.buttonAdd = new System.Windows.Forms.Button();
this.buttonUpdate = new System.Windows.Forms.Button();
this.buttonDelete = new System.Windows.Forms.Button();
2024-05-24 13:42:42 +04:00
this.buttonRefresh = new System.Windows.Forms.Button();
2024-05-24 12:23:50 +04:00
this.dataGridView = new System.Windows.Forms.DataGridView();
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
this.SuspendLayout();
//
// buttonAdd
//
2024-05-24 13:42:42 +04:00
this.buttonAdd.Location = new System.Drawing.Point(561, 27);
2024-05-24 12:23:50 +04:00
this.buttonAdd.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.buttonAdd.Name = "buttonAdd";
2024-05-24 13:42:42 +04:00
this.buttonAdd.Size = new System.Drawing.Size(102, 35);
2024-05-24 12:23:50 +04:00
this.buttonAdd.TabIndex = 0;
this.buttonAdd.Text = "Добавить";
this.buttonAdd.UseVisualStyleBackColor = true;
this.buttonAdd.Click += new System.EventHandler(this.ButtonAdd_Click);
//
// buttonUpdate
//
2024-05-24 13:42:42 +04:00
this.buttonUpdate.Location = new System.Drawing.Point(561, 76);
2024-05-24 12:23:50 +04:00
this.buttonUpdate.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.buttonUpdate.Name = "buttonUpdate";
2024-05-24 13:42:42 +04:00
this.buttonUpdate.Size = new System.Drawing.Size(102, 35);
2024-05-24 12:23:50 +04:00
this.buttonUpdate.TabIndex = 1;
this.buttonUpdate.Text = "Изменить";
this.buttonUpdate.UseVisualStyleBackColor = true;
this.buttonUpdate.Click += new System.EventHandler(this.ButtonUpdate_Click);
//
// buttonDelete
//
2024-05-24 13:42:42 +04:00
this.buttonDelete.Location = new System.Drawing.Point(561, 126);
2024-05-24 12:23:50 +04:00
this.buttonDelete.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.buttonDelete.Name = "buttonDelete";
2024-05-24 13:42:42 +04:00
this.buttonDelete.Size = new System.Drawing.Size(102, 35);
2024-05-24 12:23:50 +04:00
this.buttonDelete.TabIndex = 2;
this.buttonDelete.Text = "Удалить";
this.buttonDelete.UseVisualStyleBackColor = true;
this.buttonDelete.Click += new System.EventHandler(this.ButtonDelete_Click);
//
2024-05-24 13:42:42 +04:00
// buttonRefresh
2024-05-24 12:23:50 +04:00
//
2024-05-24 13:42:42 +04:00
this.buttonRefresh.Location = new System.Drawing.Point(561, 179);
this.buttonRefresh.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.buttonRefresh.Name = "buttonRefresh";
this.buttonRefresh.Size = new System.Drawing.Size(102, 35);
this.buttonRefresh.TabIndex = 3;
this.buttonRefresh.Text = "Обновить";
this.buttonRefresh.UseVisualStyleBackColor = true;
this.buttonRefresh.Click += new System.EventHandler(this.ButtonRefresh_Click);
2024-05-24 12:23:50 +04:00
//
// dataGridView
//
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView.Location = new System.Drawing.Point(10, 9);
this.dataGridView.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.dataGridView.Name = "dataGridView";
this.dataGridView.RowHeadersWidth = 51;
this.dataGridView.RowTemplate.Height = 29;
2024-05-24 13:42:42 +04:00
this.dataGridView.Size = new System.Drawing.Size(545, 320);
2024-05-24 12:23:50 +04:00
this.dataGridView.TabIndex = 4;
//
2024-05-24 13:42:42 +04:00
// FormKomments
2024-05-24 12:23:50 +04:00
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(683, 338);
this.Controls.Add(this.dataGridView);
2024-05-24 13:42:42 +04:00
this.Controls.Add(this.buttonRefresh);
2024-05-24 12:23:50 +04:00
this.Controls.Add(this.buttonDelete);
this.Controls.Add(this.buttonUpdate);
this.Controls.Add(this.buttonAdd);
this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
2024-05-24 13:42:42 +04:00
this.Name = "FormKomments";
this.Text = "Комментарии";
this.Load += new System.EventHandler(this.FormWorkPiece_Load);
2024-05-24 12:23:50 +04:00
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
this.ResumeLayout(false);
}
#endregion
private Button buttonAdd;
private Button buttonUpdate;
private Button buttonDelete;
2024-05-24 13:42:42 +04:00
private Button buttonRefresh;
2024-05-24 12:23:50 +04:00
private DataGridView dataGridView;
}
}