2024-06-23 12:07:01 +04:00
|
|
|
|
namespace WinFormsApp
|
|
|
|
|
{
|
|
|
|
|
partial class FormMain
|
|
|
|
|
{
|
|
|
|
|
/// <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()
|
|
|
|
|
{
|
|
|
|
|
dataGridView = new DataGridView();
|
|
|
|
|
buttonCreateSupply = new Button();
|
2024-06-23 14:01:09 +04:00
|
|
|
|
menuStrip1 = new MenuStrip();
|
|
|
|
|
товарыToolStripMenuItem = new ToolStripMenuItem();
|
2024-06-23 12:07:01 +04:00
|
|
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
2024-06-23 14:01:09 +04:00
|
|
|
|
menuStrip1.SuspendLayout();
|
2024-06-23 12:07:01 +04:00
|
|
|
|
SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// dataGridView
|
|
|
|
|
//
|
|
|
|
|
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
|
|
|
dataGridView.Location = new Point(12, 28);
|
|
|
|
|
dataGridView.Name = "dataGridView";
|
|
|
|
|
dataGridView.Size = new Size(614, 321);
|
|
|
|
|
dataGridView.TabIndex = 0;
|
|
|
|
|
//
|
|
|
|
|
// buttonCreateSupply
|
|
|
|
|
//
|
|
|
|
|
buttonCreateSupply.Location = new Point(632, 28);
|
|
|
|
|
buttonCreateSupply.Name = "buttonCreateSupply";
|
|
|
|
|
buttonCreateSupply.Size = new Size(154, 23);
|
|
|
|
|
buttonCreateSupply.TabIndex = 1;
|
|
|
|
|
buttonCreateSupply.Text = "Оформить поставку";
|
|
|
|
|
buttonCreateSupply.UseVisualStyleBackColor = true;
|
|
|
|
|
//
|
2024-06-23 14:01:09 +04:00
|
|
|
|
// menuStrip1
|
2024-06-23 12:07:01 +04:00
|
|
|
|
//
|
2024-06-23 14:01:09 +04:00
|
|
|
|
menuStrip1.Items.AddRange(new ToolStripItem[] { товарыToolStripMenuItem });
|
|
|
|
|
menuStrip1.Location = new Point(0, 0);
|
|
|
|
|
menuStrip1.Name = "menuStrip1";
|
|
|
|
|
menuStrip1.Size = new Size(798, 24);
|
|
|
|
|
menuStrip1.TabIndex = 2;
|
|
|
|
|
menuStrip1.Text = "menuStrip1";
|
|
|
|
|
//
|
|
|
|
|
// товарыToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
товарыToolStripMenuItem.Name = "товарыToolStripMenuItem";
|
|
|
|
|
товарыToolStripMenuItem.Size = new Size(60, 20);
|
|
|
|
|
товарыToolStripMenuItem.Text = "Товары";
|
|
|
|
|
товарыToolStripMenuItem.Click += товарыToolStripMenuItem_Click;
|
2024-06-23 12:07:01 +04:00
|
|
|
|
//
|
|
|
|
|
// FormMain
|
|
|
|
|
//
|
|
|
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
|
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
|
|
|
ClientSize = new Size(798, 361);
|
|
|
|
|
Controls.Add(buttonCreateSupply);
|
|
|
|
|
Controls.Add(dataGridView);
|
2024-06-23 14:01:09 +04:00
|
|
|
|
Controls.Add(menuStrip1);
|
|
|
|
|
MainMenuStrip = menuStrip1;
|
2024-06-23 12:07:01 +04:00
|
|
|
|
Name = "FormMain";
|
|
|
|
|
Text = "FormMain";
|
|
|
|
|
Load += FormMain_Load;
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
2024-06-23 14:01:09 +04:00
|
|
|
|
menuStrip1.ResumeLayout(false);
|
|
|
|
|
menuStrip1.PerformLayout();
|
2024-06-23 12:07:01 +04:00
|
|
|
|
ResumeLayout(false);
|
|
|
|
|
PerformLayout();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private DataGridView dataGridView;
|
|
|
|
|
private Button buttonCreateSupply;
|
2024-06-23 14:01:09 +04:00
|
|
|
|
private MenuStrip menuStrip1;
|
|
|
|
|
private ToolStripMenuItem товарыToolStripMenuItem;
|
2024-06-23 12:07:01 +04:00
|
|
|
|
}
|
|
|
|
|
}
|