393 lines
18 KiB
C#
393 lines
18 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();
|
||
componentExcelWithPieDiagram = new Components.ComponentExcelWithPieDiagram(components);
|
||
dataGridViewSeries = new DataGridView();
|
||
textBoxSeriesName = new TextBox();
|
||
numericUpDownSeriesValue = new NumericUpDown();
|
||
buttonAddSeries = new Button();
|
||
buttonClearSeries = new Button();
|
||
buttonCreateExcelWithPieDiagram = new Button();
|
||
comboBoxLegendPosition = new ComboBox();
|
||
labelLegendPosition = new Label();
|
||
textBoxDiagramTitle = new TextBox();
|
||
componentExcelTableWithColumnHeader = new Components.ComponentExcelTableWithColumnHeader(components);
|
||
dataGridViewEmployees = new DataGridView();
|
||
textBoxSurname = new TextBox();
|
||
textBoxName = new TextBox();
|
||
numericUpDownAge = new NumericUpDown();
|
||
label1 = new Label();
|
||
textBoxWorkPlace = new TextBox();
|
||
textBoxPost = new TextBox();
|
||
textBoxSalary = new TextBox();
|
||
buttonAddEmployee = new Button();
|
||
buttonClearEmployes = new Button();
|
||
buttonGenerateExcelWithTable = new Button();
|
||
((System.ComponentModel.ISupportInitialize)dataGridViewSeries).BeginInit();
|
||
((System.ComponentModel.ISupportInitialize)numericUpDownSeriesValue).BeginInit();
|
||
((System.ComponentModel.ISupportInitialize)dataGridViewEmployees).BeginInit();
|
||
((System.ComponentModel.ISupportInitialize)numericUpDownAge).BeginInit();
|
||
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, 127);
|
||
listBoxImages.Name = "listBoxImages";
|
||
listBoxImages.Size = new Size(357, 104);
|
||
listBoxImages.TabIndex = 3;
|
||
//
|
||
// buttonCreateExcelFile
|
||
//
|
||
buttonCreateExcelFile.Location = new Point(12, 272);
|
||
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, 237);
|
||
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, 237);
|
||
buttonClearImages.Name = "buttonClearImages";
|
||
buttonClearImages.Size = new Size(94, 29);
|
||
buttonClearImages.TabIndex = 6;
|
||
buttonClearImages.Text = "Очистить";
|
||
buttonClearImages.UseVisualStyleBackColor = true;
|
||
buttonClearImages.Click += buttonClearImages_Click;
|
||
//
|
||
// dataGridViewSeries
|
||
//
|
||
dataGridViewSeries.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
||
dataGridViewSeries.Enabled = false;
|
||
dataGridViewSeries.Location = new Point(406, 10);
|
||
dataGridViewSeries.MultiSelect = false;
|
||
dataGridViewSeries.Name = "dataGridViewSeries";
|
||
dataGridViewSeries.ReadOnly = true;
|
||
dataGridViewSeries.RowHeadersVisible = false;
|
||
dataGridViewSeries.RowHeadersWidth = 51;
|
||
dataGridViewSeries.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
|
||
dataGridViewSeries.Size = new Size(300, 115);
|
||
dataGridViewSeries.TabIndex = 7;
|
||
//
|
||
// textBoxSeriesName
|
||
//
|
||
textBoxSeriesName.Location = new Point(406, 166);
|
||
textBoxSeriesName.Name = "textBoxSeriesName";
|
||
textBoxSeriesName.PlaceholderText = "Название серии";
|
||
textBoxSeriesName.Size = new Size(200, 27);
|
||
textBoxSeriesName.TabIndex = 8;
|
||
//
|
||
// numericUpDownSeriesValue
|
||
//
|
||
numericUpDownSeriesValue.DecimalPlaces = 2;
|
||
numericUpDownSeriesValue.Increment = new decimal(new int[] { 1, 0, 0, 65536 });
|
||
numericUpDownSeriesValue.Location = new Point(406, 199);
|
||
numericUpDownSeriesValue.Name = "numericUpDownSeriesValue";
|
||
numericUpDownSeriesValue.Size = new Size(125, 27);
|
||
numericUpDownSeriesValue.TabIndex = 9;
|
||
numericUpDownSeriesValue.TextAlign = HorizontalAlignment.Right;
|
||
//
|
||
// buttonAddSeries
|
||
//
|
||
buttonAddSeries.Location = new Point(612, 166);
|
||
buttonAddSeries.Name = "buttonAddSeries";
|
||
buttonAddSeries.Size = new Size(94, 29);
|
||
buttonAddSeries.TabIndex = 10;
|
||
buttonAddSeries.Text = "Добавить";
|
||
buttonAddSeries.UseVisualStyleBackColor = true;
|
||
buttonAddSeries.Click += buttonAddSeries_Click;
|
||
//
|
||
// buttonClearSeries
|
||
//
|
||
buttonClearSeries.Location = new Point(537, 199);
|
||
buttonClearSeries.Name = "buttonClearSeries";
|
||
buttonClearSeries.Size = new Size(169, 29);
|
||
buttonClearSeries.TabIndex = 11;
|
||
buttonClearSeries.Text = "Очистить данные";
|
||
buttonClearSeries.UseVisualStyleBackColor = true;
|
||
buttonClearSeries.Click += buttonClearSeries_Click;
|
||
//
|
||
// buttonCreateExcelWithPieDiagram
|
||
//
|
||
buttonCreateExcelWithPieDiagram.Location = new Point(406, 272);
|
||
buttonCreateExcelWithPieDiagram.Name = "buttonCreateExcelWithPieDiagram";
|
||
buttonCreateExcelWithPieDiagram.Size = new Size(300, 29);
|
||
buttonCreateExcelWithPieDiagram.TabIndex = 12;
|
||
buttonCreateExcelWithPieDiagram.Text = "Создать Excel файл с диаграммой";
|
||
buttonCreateExcelWithPieDiagram.UseVisualStyleBackColor = true;
|
||
buttonCreateExcelWithPieDiagram.Click += buttonCreateExcelWithPieDiagram_Click;
|
||
//
|
||
// comboBoxLegendPosition
|
||
//
|
||
comboBoxLegendPosition.DropDownStyle = ComboBoxStyle.DropDownList;
|
||
comboBoxLegendPosition.FormattingEnabled = true;
|
||
comboBoxLegendPosition.Location = new Point(581, 234);
|
||
comboBoxLegendPosition.Name = "comboBoxLegendPosition";
|
||
comboBoxLegendPosition.Size = new Size(125, 28);
|
||
comboBoxLegendPosition.TabIndex = 13;
|
||
//
|
||
// labelLegendPosition
|
||
//
|
||
labelLegendPosition.AutoSize = true;
|
||
labelLegendPosition.Location = new Point(406, 237);
|
||
labelLegendPosition.Name = "labelLegendPosition";
|
||
labelLegendPosition.Size = new Size(177, 20);
|
||
labelLegendPosition.TabIndex = 14;
|
||
labelLegendPosition.Text = "Расположение легенды:";
|
||
//
|
||
// textBoxDiagramTitle
|
||
//
|
||
textBoxDiagramTitle.Location = new Point(406, 131);
|
||
textBoxDiagramTitle.Name = "textBoxDiagramTitle";
|
||
textBoxDiagramTitle.PlaceholderText = "Заголовок диаграммы";
|
||
textBoxDiagramTitle.Size = new Size(300, 27);
|
||
textBoxDiagramTitle.TabIndex = 15;
|
||
//
|
||
// dataGridViewEmployees
|
||
//
|
||
dataGridViewEmployees.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
||
dataGridViewEmployees.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
||
dataGridViewEmployees.Location = new Point(779, 12);
|
||
dataGridViewEmployees.Name = "dataGridViewEmployees";
|
||
dataGridViewEmployees.RowHeadersVisible = false;
|
||
dataGridViewEmployees.RowHeadersWidth = 51;
|
||
dataGridViewEmployees.Size = new Size(619, 201);
|
||
dataGridViewEmployees.TabIndex = 16;
|
||
//
|
||
// textBoxSurname
|
||
//
|
||
textBoxSurname.Location = new Point(782, 219);
|
||
textBoxSurname.Name = "textBoxSurname";
|
||
textBoxSurname.PlaceholderText = "Фамилия";
|
||
textBoxSurname.Size = new Size(164, 27);
|
||
textBoxSurname.TabIndex = 17;
|
||
//
|
||
// textBoxName
|
||
//
|
||
textBoxName.Location = new Point(782, 256);
|
||
textBoxName.Name = "textBoxName";
|
||
textBoxName.PlaceholderText = "Имя";
|
||
textBoxName.Size = new Size(164, 27);
|
||
textBoxName.TabIndex = 18;
|
||
//
|
||
// numericUpDownAge
|
||
//
|
||
numericUpDownAge.Location = new Point(858, 292);
|
||
numericUpDownAge.Name = "numericUpDownAge";
|
||
numericUpDownAge.Size = new Size(88, 27);
|
||
numericUpDownAge.TabIndex = 19;
|
||
//
|
||
// label1
|
||
//
|
||
label1.AutoSize = true;
|
||
label1.Location = new Point(782, 294);
|
||
label1.Name = "label1";
|
||
label1.Size = new Size(64, 20);
|
||
label1.TabIndex = 20;
|
||
label1.Text = "Возраст";
|
||
//
|
||
// textBoxWorkPlace
|
||
//
|
||
textBoxWorkPlace.Location = new Point(980, 219);
|
||
textBoxWorkPlace.Name = "textBoxWorkPlace";
|
||
textBoxWorkPlace.PlaceholderText = "Место работы";
|
||
textBoxWorkPlace.Size = new Size(164, 27);
|
||
textBoxWorkPlace.TabIndex = 21;
|
||
//
|
||
// textBoxPost
|
||
//
|
||
textBoxPost.Location = new Point(980, 256);
|
||
textBoxPost.Name = "textBoxPost";
|
||
textBoxPost.PlaceholderText = "Должность";
|
||
textBoxPost.Size = new Size(164, 27);
|
||
textBoxPost.TabIndex = 22;
|
||
//
|
||
// textBoxSalary
|
||
//
|
||
textBoxSalary.Location = new Point(980, 292);
|
||
textBoxSalary.Name = "textBoxSalary";
|
||
textBoxSalary.PlaceholderText = "Зарплата";
|
||
textBoxSalary.Size = new Size(164, 27);
|
||
textBoxSalary.TabIndex = 23;
|
||
//
|
||
// buttonAddEmployee
|
||
//
|
||
buttonAddEmployee.Location = new Point(1150, 219);
|
||
buttonAddEmployee.Name = "buttonAddEmployee";
|
||
buttonAddEmployee.Size = new Size(94, 29);
|
||
buttonAddEmployee.TabIndex = 24;
|
||
buttonAddEmployee.Text = "Добавить";
|
||
buttonAddEmployee.UseVisualStyleBackColor = true;
|
||
buttonAddEmployee.Click += buttonAddEmployee_Click;
|
||
//
|
||
// buttonClearEmployes
|
||
//
|
||
buttonClearEmployes.Location = new Point(1250, 219);
|
||
buttonClearEmployes.Name = "buttonClearEmployes";
|
||
buttonClearEmployes.Size = new Size(94, 29);
|
||
buttonClearEmployes.TabIndex = 25;
|
||
buttonClearEmployes.Text = "Очистить";
|
||
buttonClearEmployes.UseVisualStyleBackColor = true;
|
||
buttonClearEmployes.Click += buttonClearEmployes_Click;
|
||
//
|
||
// buttonGenerateExcelWithTable
|
||
//
|
||
buttonGenerateExcelWithTable.Location = new Point(1149, 256);
|
||
buttonGenerateExcelWithTable.Name = "buttonGenerateExcelWithTable";
|
||
buttonGenerateExcelWithTable.Size = new Size(195, 29);
|
||
buttonGenerateExcelWithTable.TabIndex = 26;
|
||
buttonGenerateExcelWithTable.Text = "Сгенерировать";
|
||
buttonGenerateExcelWithTable.UseVisualStyleBackColor = true;
|
||
buttonGenerateExcelWithTable.Click += buttonGenerateExcelWithTable_Click;
|
||
//
|
||
// FormNoVisual
|
||
//
|
||
AutoScaleDimensions = new SizeF(8F, 20F);
|
||
AutoScaleMode = AutoScaleMode.Font;
|
||
ClientSize = new Size(1410, 446);
|
||
Controls.Add(buttonGenerateExcelWithTable);
|
||
Controls.Add(buttonClearEmployes);
|
||
Controls.Add(buttonAddEmployee);
|
||
Controls.Add(textBoxSalary);
|
||
Controls.Add(textBoxPost);
|
||
Controls.Add(textBoxWorkPlace);
|
||
Controls.Add(label1);
|
||
Controls.Add(numericUpDownAge);
|
||
Controls.Add(textBoxName);
|
||
Controls.Add(textBoxSurname);
|
||
Controls.Add(dataGridViewEmployees);
|
||
Controls.Add(textBoxDiagramTitle);
|
||
Controls.Add(labelLegendPosition);
|
||
Controls.Add(comboBoxLegendPosition);
|
||
Controls.Add(buttonCreateExcelWithPieDiagram);
|
||
Controls.Add(buttonClearSeries);
|
||
Controls.Add(buttonAddSeries);
|
||
Controls.Add(numericUpDownSeriesValue);
|
||
Controls.Add(textBoxSeriesName);
|
||
Controls.Add(dataGridViewSeries);
|
||
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";
|
||
((System.ComponentModel.ISupportInitialize)dataGridViewSeries).EndInit();
|
||
((System.ComponentModel.ISupportInitialize)numericUpDownSeriesValue).EndInit();
|
||
((System.ComponentModel.ISupportInitialize)dataGridViewEmployees).EndInit();
|
||
((System.ComponentModel.ISupportInitialize)numericUpDownAge).EndInit();
|
||
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;
|
||
private Components.ComponentExcelWithPieDiagram componentExcelWithPieDiagram;
|
||
private DataGridView dataGridViewSeries;
|
||
private TextBox textBoxSeriesName;
|
||
private NumericUpDown numericUpDownSeriesValue;
|
||
private Button buttonAddSeries;
|
||
private Button buttonClearSeries;
|
||
private Button buttonCreateExcelWithPieDiagram;
|
||
private ComboBox comboBoxLegendPosition;
|
||
private Label labelLegendPosition;
|
||
private TextBox textBoxDiagramTitle;
|
||
private Components.ComponentExcelTableWithColumnHeader componentExcelTableWithColumnHeader;
|
||
private DataGridView dataGridViewEmployees;
|
||
private TextBox textBoxSurname;
|
||
private TextBox textBoxName;
|
||
private NumericUpDown numericUpDownAge;
|
||
private Label label1;
|
||
private TextBox textBoxWorkPlace;
|
||
private TextBox textBoxPost;
|
||
private TextBox textBoxSalary;
|
||
private Button buttonAddEmployee;
|
||
private Button buttonClearEmployes;
|
||
private Button buttonGenerateExcelWithTable;
|
||
}
|
||
} |