81 lines
3.5 KiB
C#
81 lines
3.5 KiB
C#
|
using WinFormsLibrary1;
|
|||
|
|
|||
|
namespace WinFormsApp1
|
|||
|
{
|
|||
|
partial class Form2
|
|||
|
{
|
|||
|
private System.ComponentModel.IContainer components = null;
|
|||
|
protected override void Dispose(bool disposing)
|
|||
|
{
|
|||
|
if (disposing && (components != null))
|
|||
|
{
|
|||
|
components.Dispose();
|
|||
|
}
|
|||
|
base.Dispose(disposing);
|
|||
|
}
|
|||
|
|
|||
|
#region Windows Form Designer generated code
|
|||
|
private void InitializeComponent()
|
|||
|
{
|
|||
|
components = new System.ComponentModel.Container();
|
|||
|
buttonCreateTextDocument = new Button();
|
|||
|
buttonCreateTableDocument = new Button();
|
|||
|
buttonCreateDiagramDocument = new Button();
|
|||
|
bigTextComponent1 = new ComponentWithBigText(components);
|
|||
|
tableComponent1 = new ComponentTable(components);
|
|||
|
diagramComponent1 = new ComponentDiagram(components);
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// buttonCreateTextDocument
|
|||
|
//
|
|||
|
buttonCreateTextDocument.Location = new Point(12, 30);
|
|||
|
buttonCreateTextDocument.Name = "buttonCreateTextDocument";
|
|||
|
buttonCreateTextDocument.Size = new Size(125, 50);
|
|||
|
buttonCreateTextDocument.TabIndex = 0;
|
|||
|
buttonCreateTextDocument.Text = "Создать документ с текстом";
|
|||
|
buttonCreateTextDocument.UseVisualStyleBackColor = true;
|
|||
|
buttonCreateTextDocument.Click += buttonCreateTextDocument_Click;
|
|||
|
//
|
|||
|
// buttonCreateTableDocument
|
|||
|
//
|
|||
|
buttonCreateTableDocument.Location = new Point(180, 30);
|
|||
|
buttonCreateTableDocument.Name = "buttonCreateTableDocument";
|
|||
|
buttonCreateTableDocument.Size = new Size(125, 50);
|
|||
|
buttonCreateTableDocument.TabIndex = 1;
|
|||
|
buttonCreateTableDocument.Text = "Создать документ с таблицей";
|
|||
|
buttonCreateTableDocument.UseVisualStyleBackColor = true;
|
|||
|
buttonCreateTableDocument.Click += buttonCreateTableDocument_Click;
|
|||
|
//
|
|||
|
// buttonCreateDiagramDocument
|
|||
|
//
|
|||
|
buttonCreateDiagramDocument.Location = new Point(347, 30);
|
|||
|
buttonCreateDiagramDocument.Name = "buttonCreateDiagramDocument";
|
|||
|
buttonCreateDiagramDocument.Size = new Size(125, 50);
|
|||
|
buttonCreateDiagramDocument.TabIndex = 2;
|
|||
|
buttonCreateDiagramDocument.Text = "Создать документ с диаграммой";
|
|||
|
buttonCreateDiagramDocument.UseVisualStyleBackColor = true;
|
|||
|
buttonCreateDiagramDocument.Click += buttonCreateDiagramDocument_Click;
|
|||
|
//
|
|||
|
// FormNonVisualComponents
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(484, 111);
|
|||
|
Controls.Add(buttonCreateDiagramDocument);
|
|||
|
Controls.Add(buttonCreateTableDocument);
|
|||
|
Controls.Add(buttonCreateTextDocument);
|
|||
|
Name = "FormNonVisualComponents";
|
|||
|
Text = "Не визуальные компоненты";
|
|||
|
ResumeLayout(false);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Button buttonCreateTextDocument;
|
|||
|
private Button buttonCreateTableDocument;
|
|||
|
private Button buttonCreateDiagramDocument;
|
|||
|
private ComponentWithBigText bigTextComponent1;
|
|||
|
private ComponentTable tableComponent1;
|
|||
|
private ComponentDiagram diagramComponent1;
|
|||
|
}
|
|||
|
}
|