257 lines
12 KiB
C#
257 lines
12 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();
|
||
((System.ComponentModel.ISupportInitialize)dataGridViewSeries).BeginInit();
|
||
((System.ComponentModel.ISupportInitialize)numericUpDownSeriesValue).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;
|
||
//
|
||
// FormNoVisual
|
||
//
|
||
AutoScaleDimensions = new SizeF(8F, 20F);
|
||
AutoScaleMode = AutoScaleMode.Font;
|
||
ClientSize = new Size(1054, 446);
|
||
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();
|
||
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;
|
||
}
|
||
} |