PIAPS_CW/WinFormsApp/FormMediaFiles.Designer.cs

141 lines
5.0 KiB
C#
Raw Normal View History

namespace WinFormsApp
{
partial class FormMediaFiles
{
/// <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()
{
2024-06-24 16:23:42 +04:00
groupBoxFiles = new GroupBox();
panelFiles = new Panel();
comboBoxProduct = new ComboBox();
buttonAdd = new Button();
buttonSelectFile = new Button();
labelFile = new Label();
groupBox1 = new GroupBox();
2024-06-24 16:23:42 +04:00
groupBoxFiles.SuspendLayout();
groupBox1.SuspendLayout();
SuspendLayout();
//
2024-06-24 16:23:42 +04:00
// groupBoxFiles
//
groupBoxFiles.Controls.Add(panelFiles);
groupBoxFiles.Dock = DockStyle.Left;
groupBoxFiles.Location = new Point(0, 0);
groupBoxFiles.Name = "groupBoxFiles";
groupBoxFiles.Size = new Size(282, 439);
groupBoxFiles.TabIndex = 0;
groupBoxFiles.TabStop = false;
groupBoxFiles.Text = "Файлы";
//
// panelFiles
//
panelFiles.AutoScroll = true;
panelFiles.Dock = DockStyle.Fill;
panelFiles.Location = new Point(3, 19);
panelFiles.Name = "panelFiles";
panelFiles.Size = new Size(276, 417);
panelFiles.TabIndex = 0;
//
// comboBoxProduct
//
comboBoxProduct.FormattingEnabled = true;
comboBoxProduct.Location = new Point(19, 43);
comboBoxProduct.Name = "comboBoxProduct";
comboBoxProduct.Size = new Size(121, 23);
comboBoxProduct.TabIndex = 1;
comboBoxProduct.SelectedIndexChanged += comboBoxProduct_SelectedIndexChanged;
//
// buttonAdd
//
buttonAdd.Location = new Point(19, 92);
buttonAdd.Name = "buttonAdd";
buttonAdd.Size = new Size(75, 23);
buttonAdd.TabIndex = 2;
buttonAdd.Text = "Добавить";
buttonAdd.UseVisualStyleBackColor = true;
buttonAdd.Click += buttonAdd_Click;
//
// buttonSelectFile
//
buttonSelectFile.Location = new Point(19, 237);
buttonSelectFile.Name = "buttonSelectFile";
buttonSelectFile.Size = new Size(109, 27);
buttonSelectFile.TabIndex = 3;
buttonSelectFile.Text = "Выбрать файл...";
buttonSelectFile.UseVisualStyleBackColor = true;
buttonSelectFile.Click += buttonSelectFile_Click;
//
// labelFile
//
labelFile.AutoSize = true;
labelFile.Location = new Point(19, 267);
labelFile.Name = "labelFile";
labelFile.Size = new Size(40, 15);
labelFile.TabIndex = 4;
labelFile.Text = "Пусто";
//
// groupBox1
//
2024-06-24 16:23:42 +04:00
groupBox1.Controls.Add(comboBoxProduct);
groupBox1.Controls.Add(labelFile);
groupBox1.Controls.Add(buttonAdd);
groupBox1.Controls.Add(buttonSelectFile);
groupBox1.Dock = DockStyle.Right;
groupBox1.Location = new Point(466, 0);
groupBox1.Name = "groupBox1";
2024-06-24 16:23:42 +04:00
groupBox1.Size = new Size(200, 439);
groupBox1.TabIndex = 5;
groupBox1.TabStop = false;
groupBox1.Text = "groupBox1";
//
// FormMediaFiles
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
2024-06-24 16:23:42 +04:00
ClientSize = new Size(666, 439);
Controls.Add(groupBox1);
2024-06-24 16:23:42 +04:00
Controls.Add(groupBoxFiles);
Name = "FormMediaFiles";
Text = "FormMediaFiles";
2024-06-24 16:23:42 +04:00
Load += FormMediaFiles_Load;
Resize += FormMediaFiles_Resize;
groupBoxFiles.ResumeLayout(false);
groupBox1.ResumeLayout(false);
groupBox1.PerformLayout();
ResumeLayout(false);
}
#endregion
2024-06-24 16:23:42 +04:00
private GroupBox groupBoxFiles;
private ComboBox comboBoxProduct;
private Button buttonAdd;
private Button buttonSelectFile;
private Label labelFile;
private GroupBox groupBox1;
2024-06-24 16:23:42 +04:00
private Panel panelFiles;
}
}