PIbd-23_Baryshev_D.A._Garage/ProjectGarage/Forms/FormReplenishments.Designer.cs
2024-11-20 14:50:06 +04:00

110 lines
5.4 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace ProjectGarage.Forms
{
partial class FormReplenishments
{
/// <summary>
/// Обязательная переменная конструктора.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Освободить все используемые ресурсы.
/// </summary>
/// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Код, автоматически созданный конструктором компонентов
/// <summary>
/// Требуемый метод для поддержки конструктора — не изменяйте
/// содержимое этого метода с помощью редактора кода.
/// </summary>
private void InitializeComponent()
{
buttonAddReplenishment = new Button();
buttonDeleteReplenishment = new Button();
panelFormReplenishmentssButtons = new Panel();
dataGridViewReplenishments = new DataGridView();
panelFormReplenishmentssButtons.SuspendLayout();
((System.ComponentModel.ISupportInitialize)dataGridViewReplenishments).BeginInit();
SuspendLayout();
//
// buttonAddReplenishment
//
buttonAddReplenishment.BackgroundImage = Properties.Resources.плюсик;
buttonAddReplenishment.BackgroundImageLayout = ImageLayout.Stretch;
buttonAddReplenishment.Location = new Point(35, 23);
buttonAddReplenishment.Name = "buttonAddReplenishment";
buttonAddReplenishment.Size = new Size(94, 75);
buttonAddReplenishment.TabIndex = 0;
buttonAddReplenishment.UseVisualStyleBackColor = true;
buttonAddReplenishment.Click += ButtonAddReplenishment_Click;
//
// buttonDeleteReplenishment
//
buttonDeleteReplenishment.BackgroundImage = Properties.Resources.минусик;
buttonDeleteReplenishment.BackgroundImageLayout = ImageLayout.Stretch;
buttonDeleteReplenishment.Location = new Point(35, 115);
buttonDeleteReplenishment.Name = "buttonDeleteReplenishment";
buttonDeleteReplenishment.Size = new Size(94, 78);
buttonDeleteReplenishment.TabIndex = 1;
buttonDeleteReplenishment.UseVisualStyleBackColor = true;
buttonDeleteReplenishment.Click += ButtonDeleteReplenishment_Click;
//
// panelFormReplenishmentssButtons
//
panelFormReplenishmentssButtons.Controls.Add(buttonDeleteReplenishment);
panelFormReplenishmentssButtons.Controls.Add(buttonAddReplenishment);
panelFormReplenishmentssButtons.Dock = DockStyle.Right;
panelFormReplenishmentssButtons.Location = new Point(641, 0);
panelFormReplenishmentssButtons.Name = "panelFormReplenishmentssButtons";
panelFormReplenishmentssButtons.Size = new Size(161, 406);
panelFormReplenishmentssButtons.TabIndex = 6;
//
// dataGridViewReplenishments
//
dataGridViewReplenishments.AllowUserToAddRows = false;
dataGridViewReplenishments.AllowUserToDeleteRows = false;
dataGridViewReplenishments.AllowUserToResizeColumns = false;
dataGridViewReplenishments.AllowUserToResizeRows = false;
dataGridViewReplenishments.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
dataGridViewReplenishments.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridViewReplenishments.Dock = DockStyle.Fill;
dataGridViewReplenishments.Location = new Point(0, 0);
dataGridViewReplenishments.Name = "dataGridViewReplenishments";
dataGridViewReplenishments.ReadOnly = true;
dataGridViewReplenishments.RowHeadersVisible = false;
dataGridViewReplenishments.RowHeadersWidth = 51;
dataGridViewReplenishments.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
dataGridViewReplenishments.Size = new Size(641, 406);
dataGridViewReplenishments.TabIndex = 7;
//
// FormReplenishments
//
ClientSize = new Size(802, 406);
Controls.Add(dataGridViewReplenishments);
Controls.Add(panelFormReplenishmentssButtons);
Name = "FormReplenishments";
Text = "Пополнения";
Load += FormReplenishments_Load;
panelFormReplenishmentssButtons.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)dataGridViewReplenishments).EndInit();
ResumeLayout(false);
}
#endregion
private Button buttonAddReplenishment;
private Button buttonDeleteReplenishment;
private Panel panelFormReplenishmentssButtons;
private DataGridView dataGridViewReplenishments;
}
}