92 lines
4.1 KiB
C#
92 lines
4.1 KiB
C#
namespace WinForms
|
||
{
|
||
partial class FormNonVisualComponents
|
||
{
|
||
/// <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();
|
||
buttonCreateTextDocument = new Button();
|
||
buttonCreateTableDocument = new Button();
|
||
buttonCreateDiagramDocument = new Button();
|
||
bigTextComponent1 = new Components.NonVisualComponents.BigTextComponent(components);
|
||
tableComponent1 = new Components.NonVisualComponents.TableComponent(components);
|
||
diagramComponent1 = new Components.NonVisualComponents.DiagramComponent(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 Components.NonVisualComponents.BigTextComponent bigTextComponent1;
|
||
private Components.NonVisualComponents.TableComponent tableComponent1;
|
||
private Components.NonVisualComponents.DiagramComponent diagramComponent1;
|
||
}
|
||
} |