COP/TestForms/TestForm.Designer.cs

177 lines
5.1 KiB
C#
Raw Permalink Normal View History

2024-07-29 20:21:07 +04:00
namespace TestForms
{
partial class TestForm
{
/// <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();
textBoxTitle = new TextBox();
ButtonBigText = new Button();
saveFileDialog = new SaveFileDialog();
bigTextExcel = new ExcelComponents.BigTextExcel(components);
excelTable = new ExcelComponents.ExcelTable(components);
ButtonTable = new Button();
richTextBox = new RichTextBox();
label1 = new Label();
label2 = new Label();
label3 = new Label();
ButtonChart = new Button();
excelLinearChart = new ExcelComponents.ExcelLinearChart(components);
textBoxChartTitle = new TextBox();
label4 = new Label();
SuspendLayout();
//
// textBoxTitle
//
textBoxTitle.Location = new Point(12, 45);
textBoxTitle.Name = "textBoxTitle";
textBoxTitle.Size = new Size(148, 27);
textBoxTitle.TabIndex = 15;
//
// ButtonBigText
//
ButtonBigText.Location = new Point(12, 103);
ButtonBigText.Name = "ButtonBigText";
ButtonBigText.Size = new Size(148, 29);
ButtonBigText.TabIndex = 16;
ButtonBigText.Text = "Create Big Text";
ButtonBigText.UseVisualStyleBackColor = true;
ButtonBigText.Click += ButtonBigText_Click;
//
// saveFileDialog
//
saveFileDialog.FileName = "output.xlsx";
//
// ButtonTable
//
ButtonTable.Location = new Point(12, 138);
ButtonTable.Name = "ButtonTable";
ButtonTable.Size = new Size(148, 29);
ButtonTable.TabIndex = 18;
ButtonTable.Text = "Сreate Table";
ButtonTable.UseVisualStyleBackColor = true;
ButtonTable.Click += ButtonTable_Click;
//
// richTextBox
//
richTextBox.Location = new Point(185, 45);
richTextBox.Name = "richTextBox";
richTextBox.Size = new Size(432, 104);
richTextBox.TabIndex = 19;
richTextBox.Text = "Всё ускоряющаяся эволюция\n компьютерных технологий предъявила \nжёсткие\n требования к производителям как собственно вычислительной техники, так и\n периферийных устройств.";
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(12, 22);
label1.Name = "label1";
label1.Size = new Size(38, 20);
label1.TabIndex = 20;
label1.Text = "Title";
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(12, 80);
label2.Name = "label2";
label2.Size = new Size(83, 20);
label2.TabIndex = 21;
label2.Text = "Some work";
//
// label3
//
label3.AutoSize = true;
label3.Location = new Point(185, 22);
label3.Name = "label3";
label3.Size = new Size(69, 20);
label3.TabIndex = 22;
label3.Text = "BIG TEXT";
//
// ButtonChart
//
ButtonChart.Location = new Point(12, 173);
ButtonChart.Name = "ButtonChart";
ButtonChart.Size = new Size(148, 29);
ButtonChart.TabIndex = 23;
ButtonChart.Text = "Create chart";
ButtonChart.UseVisualStyleBackColor = true;
ButtonChart.Click += ButtonChart_Click;
//
// textBoxChartTitle
//
textBoxChartTitle.Location = new Point(185, 175);
textBoxChartTitle.Name = "textBoxChartTitle";
textBoxChartTitle.Size = new Size(123, 27);
textBoxChartTitle.TabIndex = 24;
//
// label4
//
label4.AutoSize = true;
label4.Location = new Point(185, 152);
label4.Name = "label4";
label4.Size = new Size(73, 20);
label4.TabIndex = 25;
label4.Text = "ChartTitle";
//
// TestForm
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(632, 360);
Controls.Add(label4);
Controls.Add(textBoxChartTitle);
Controls.Add(ButtonChart);
Controls.Add(label3);
Controls.Add(label2);
Controls.Add(label1);
Controls.Add(richTextBox);
Controls.Add(ButtonTable);
Controls.Add(ButtonBigText);
Controls.Add(textBoxTitle);
Name = "TestForm";
Text = "TestForm";
ResumeLayout(false);
PerformLayout();
}
#endregion
private TextBox textBoxTitle;
private Button ButtonBigText;
private SaveFileDialog saveFileDialog;
private ExcelComponents.BigTextExcel bigTextExcel;
private ExcelComponents.ExcelTable excelTable;
private Button ButtonTable;
private RichTextBox richTextBox;
private Label label1;
private Label label2;
private Label label3;
private Button ButtonChart;
private ExcelComponents.ExcelLinearChart excelLinearChart;
private TextBox textBoxChartTitle;
private Label label4;
}
}