92 lines
3.3 KiB
C#
92 lines
3.3 KiB
C#
namespace Test_App
|
||
{
|
||
partial class FormWord
|
||
{
|
||
/// <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();
|
||
buttonBigText = new Button();
|
||
wordBigText = new Labs.WordBigText(components);
|
||
buttonTable = new Button();
|
||
wordTable = new Labs.WordTable(components);
|
||
wordLineChart = new Labs.WordLineChart(components);
|
||
buttonLineChart = new Button();
|
||
SuspendLayout();
|
||
//
|
||
// buttonBigText
|
||
//
|
||
buttonBigText.Location = new Point(26, 37);
|
||
buttonBigText.Name = "buttonBigText";
|
||
buttonBigText.Size = new Size(144, 69);
|
||
buttonBigText.TabIndex = 0;
|
||
buttonBigText.Text = "Документ с большим текстом";
|
||
buttonBigText.UseVisualStyleBackColor = true;
|
||
buttonBigText.Click += buttonBigText_Click;
|
||
//
|
||
// buttonTable
|
||
//
|
||
buttonTable.Location = new Point(176, 37);
|
||
buttonTable.Name = "buttonTable";
|
||
buttonTable.Size = new Size(147, 69);
|
||
buttonTable.TabIndex = 1;
|
||
buttonTable.Text = "Документ с таблицей";
|
||
buttonTable.UseVisualStyleBackColor = true;
|
||
buttonTable.Click += buttonTable_Click;
|
||
//
|
||
// buttonLineChart
|
||
//
|
||
buttonLineChart.Location = new Point(329, 37);
|
||
buttonLineChart.Name = "buttonLineChart";
|
||
buttonLineChart.Size = new Size(147, 69);
|
||
buttonLineChart.TabIndex = 2;
|
||
buttonLineChart.Text = "Документ с линейной диаграммой";
|
||
buttonLineChart.UseVisualStyleBackColor = true;
|
||
buttonLineChart.Click += buttonLineChart_Click;
|
||
//
|
||
// FormWord
|
||
//
|
||
AutoScaleDimensions = new SizeF(8F, 20F);
|
||
AutoScaleMode = AutoScaleMode.Font;
|
||
ClientSize = new Size(501, 153);
|
||
Controls.Add(buttonLineChart);
|
||
Controls.Add(buttonTable);
|
||
Controls.Add(buttonBigText);
|
||
Name = "FormWord";
|
||
Text = "FormWord";
|
||
ResumeLayout(false);
|
||
}
|
||
|
||
#endregion
|
||
|
||
private Button buttonBigText;
|
||
private Labs.WordBigText wordBigText;
|
||
private Button buttonTable;
|
||
private Labs.WordTable wordTable;
|
||
private Labs.WordLineChart wordLineChart;
|
||
private Button buttonLineChart;
|
||
}
|
||
} |