136 lines
5.3 KiB
C#
136 lines
5.3 KiB
C#
namespace WinFormsApp
|
|
{
|
|
partial class FormNoVisual
|
|
{
|
|
/// <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()
|
|
{
|
|
components = new System.ComponentModel.Container();
|
|
componentExcelWithImage = new Components.ComponentExcelWithImage(components);
|
|
textBoxFilePath = new TextBox();
|
|
buttonSetFilePath = new Button();
|
|
textBoxTitle = new TextBox();
|
|
listBoxImages = new ListBox();
|
|
buttonCreateExcelFile = new Button();
|
|
buttonAddImage = new Button();
|
|
buttonClearImages = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// textBoxFilePath
|
|
//
|
|
textBoxFilePath.Location = new Point(12, 12);
|
|
textBoxFilePath.Name = "textBoxFilePath";
|
|
textBoxFilePath.PlaceholderText = "Путь к файлу";
|
|
textBoxFilePath.ReadOnly = true;
|
|
textBoxFilePath.Size = new Size(248, 27);
|
|
textBoxFilePath.TabIndex = 0;
|
|
//
|
|
// buttonSetFilePath
|
|
//
|
|
buttonSetFilePath.Location = new Point(275, 10);
|
|
buttonSetFilePath.Name = "buttonSetFilePath";
|
|
buttonSetFilePath.Size = new Size(94, 29);
|
|
buttonSetFilePath.TabIndex = 1;
|
|
buttonSetFilePath.Text = "Выбрать";
|
|
buttonSetFilePath.UseVisualStyleBackColor = true;
|
|
buttonSetFilePath.Click += buttonSetFilePath_Click;
|
|
//
|
|
// textBoxTitle
|
|
//
|
|
textBoxTitle.Location = new Point(12, 45);
|
|
textBoxTitle.Name = "textBoxTitle";
|
|
textBoxTitle.PlaceholderText = "Заголовок";
|
|
textBoxTitle.Size = new Size(357, 27);
|
|
textBoxTitle.TabIndex = 2;
|
|
//
|
|
// listBoxImages
|
|
//
|
|
listBoxImages.FormattingEnabled = true;
|
|
listBoxImages.Location = new Point(12, 78);
|
|
listBoxImages.Name = "listBoxImages";
|
|
listBoxImages.Size = new Size(357, 104);
|
|
listBoxImages.TabIndex = 3;
|
|
//
|
|
// buttonCreateExcelFile
|
|
//
|
|
buttonCreateExcelFile.Location = new Point(12, 223);
|
|
buttonCreateExcelFile.Name = "buttonCreateExcelFile";
|
|
buttonCreateExcelFile.Size = new Size(357, 29);
|
|
buttonCreateExcelFile.TabIndex = 4;
|
|
buttonCreateExcelFile.Text = "Создать Excel файл";
|
|
buttonCreateExcelFile.UseVisualStyleBackColor = true;
|
|
buttonCreateExcelFile.Click += buttonCreateExcelFile_Click;
|
|
//
|
|
// buttonAddImage
|
|
//
|
|
buttonAddImage.Location = new Point(12, 188);
|
|
buttonAddImage.Name = "buttonAddImage";
|
|
buttonAddImage.Size = new Size(257, 29);
|
|
buttonAddImage.TabIndex = 5;
|
|
buttonAddImage.Text = "Добавить изображение";
|
|
buttonAddImage.UseVisualStyleBackColor = true;
|
|
buttonAddImage.Click += buttonAddImage_Click;
|
|
//
|
|
// buttonClearImages
|
|
//
|
|
buttonClearImages.Location = new Point(275, 188);
|
|
buttonClearImages.Name = "buttonClearImages";
|
|
buttonClearImages.Size = new Size(94, 29);
|
|
buttonClearImages.TabIndex = 6;
|
|
buttonClearImages.Text = "Очистить";
|
|
buttonClearImages.UseVisualStyleBackColor = true;
|
|
buttonClearImages.Click += buttonClearImages_Click;
|
|
//
|
|
// FormNoVisual
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(800, 446);
|
|
Controls.Add(buttonClearImages);
|
|
Controls.Add(buttonAddImage);
|
|
Controls.Add(buttonCreateExcelFile);
|
|
Controls.Add(listBoxImages);
|
|
Controls.Add(textBoxTitle);
|
|
Controls.Add(buttonSetFilePath);
|
|
Controls.Add(textBoxFilePath);
|
|
Name = "FormNoVisual";
|
|
Text = "FormNoVisual";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Components.ComponentExcelWithImage componentExcelWithImage;
|
|
private TextBox textBoxFilePath;
|
|
private Button buttonSetFilePath;
|
|
private TextBox textBoxTitle;
|
|
private ListBox listBoxImages;
|
|
private Button buttonCreateExcelFile;
|
|
private Button buttonAddImage;
|
|
private Button buttonClearImages;
|
|
}
|
|
} |