115 lines
5.3 KiB
C#
115 lines
5.3 KiB
C#
|
namespace SewingDresses
|
|||
|
{
|
|||
|
partial class FormMaterials
|
|||
|
{
|
|||
|
/// <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.materialGridView = new System.Windows.Forms.DataGridView();
|
|||
|
this.addMaterialButton = new System.Windows.Forms.Button();
|
|||
|
this.changeMaterialButton = new System.Windows.Forms.Button();
|
|||
|
this.deleteMaterialButton = new System.Windows.Forms.Button();
|
|||
|
this.refreshMaterialsButton = new System.Windows.Forms.Button();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.materialGridView)).BeginInit();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// materialGridView
|
|||
|
//
|
|||
|
this.materialGridView.BackgroundColor = System.Drawing.SystemColors.ButtonHighlight;
|
|||
|
this.materialGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|||
|
this.materialGridView.Location = new System.Drawing.Point(1, 2);
|
|||
|
this.materialGridView.Name = "materialGridView";
|
|||
|
this.materialGridView.RowTemplate.Height = 25;
|
|||
|
this.materialGridView.Size = new System.Drawing.Size(608, 449);
|
|||
|
this.materialGridView.TabIndex = 0;
|
|||
|
//
|
|||
|
// addMaterialButton
|
|||
|
//
|
|||
|
this.addMaterialButton.Location = new System.Drawing.Point(659, 12);
|
|||
|
this.addMaterialButton.Name = "addMaterialButton";
|
|||
|
this.addMaterialButton.Size = new System.Drawing.Size(105, 23);
|
|||
|
this.addMaterialButton.TabIndex = 1;
|
|||
|
this.addMaterialButton.Text = "Add";
|
|||
|
this.addMaterialButton.UseVisualStyleBackColor = true;
|
|||
|
this.addMaterialButton.Click += new System.EventHandler(this.ButtonAdd_Click);
|
|||
|
//
|
|||
|
// changeMaterialButton
|
|||
|
//
|
|||
|
this.changeMaterialButton.Location = new System.Drawing.Point(659, 51);
|
|||
|
this.changeMaterialButton.Name = "changeMaterialButton";
|
|||
|
this.changeMaterialButton.Size = new System.Drawing.Size(105, 23);
|
|||
|
this.changeMaterialButton.TabIndex = 2;
|
|||
|
this.changeMaterialButton.Text = "Change";
|
|||
|
this.changeMaterialButton.UseVisualStyleBackColor = true;
|
|||
|
this.changeMaterialButton.Click += new System.EventHandler(this.ButtonUpdate_Click);
|
|||
|
//
|
|||
|
// deleteMaterialButton
|
|||
|
//
|
|||
|
this.deleteMaterialButton.Location = new System.Drawing.Point(659, 94);
|
|||
|
this.deleteMaterialButton.Name = "deleteMaterialButton";
|
|||
|
this.deleteMaterialButton.Size = new System.Drawing.Size(105, 23);
|
|||
|
this.deleteMaterialButton.TabIndex = 3;
|
|||
|
this.deleteMaterialButton.Text = "Delete";
|
|||
|
this.deleteMaterialButton.UseVisualStyleBackColor = true;
|
|||
|
this.deleteMaterialButton.Click += new System.EventHandler(this.ButtonDelete_Click);
|
|||
|
//
|
|||
|
// refreshMaterialsButton
|
|||
|
//
|
|||
|
this.refreshMaterialsButton.Location = new System.Drawing.Point(659, 132);
|
|||
|
this.refreshMaterialsButton.Name = "refreshMaterialsButton";
|
|||
|
this.refreshMaterialsButton.Size = new System.Drawing.Size(105, 23);
|
|||
|
this.refreshMaterialsButton.TabIndex = 4;
|
|||
|
this.refreshMaterialsButton.Text = "Refresh";
|
|||
|
this.refreshMaterialsButton.UseVisualStyleBackColor = true;
|
|||
|
this.refreshMaterialsButton.Click += new System.EventHandler(this.ButtonRefresh_Click);
|
|||
|
//
|
|||
|
// FormMaterials
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|||
|
this.Controls.Add(this.refreshMaterialsButton);
|
|||
|
this.Controls.Add(this.deleteMaterialButton);
|
|||
|
this.Controls.Add(this.changeMaterialButton);
|
|||
|
this.Controls.Add(this.addMaterialButton);
|
|||
|
this.Controls.Add(this.materialGridView);
|
|||
|
this.Name = "FormMaterials";
|
|||
|
this.Text = "Materials";
|
|||
|
this.Load += new System.EventHandler(this.FormMaterials_Load);
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.materialGridView)).EndInit();
|
|||
|
this.ResumeLayout(false);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private DataGridView materialGridView;
|
|||
|
private Button addMaterialButton;
|
|||
|
private Button changeMaterialButton;
|
|||
|
private Button deleteMaterialButton;
|
|||
|
private Button refreshMaterialsButton;
|
|||
|
}
|
|||
|
}
|