KOP-PIbd-32-Katysheva-N-E/ComponentsView/FormComponents.Designer.cs
2024-09-30 22:43:40 +04:00

100 lines
3.0 KiB
C#

namespace ComponentsView
{
partial class FormComponents
{
/// <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();
testComponent = new ComponentsLibrary.TestComponent(components);
richTextBoxTest = new RichTextBox();
buttonSaveText = new Button();
componentBigText = new ComponentsLibrary.ComponentBigText(components);
richTextBoxWord = new RichTextBox();
buttonSaveTextWord = new Button();
SuspendLayout();
//
// richTextBoxTest
//
richTextBoxTest.Location = new Point(12, 12);
richTextBoxTest.Name = "richTextBoxTest";
richTextBoxTest.Size = new Size(175, 96);
richTextBoxTest.TabIndex = 0;
richTextBoxTest.Text = "";
//
// buttonSaveText
//
buttonSaveText.Location = new Point(12, 114);
buttonSaveText.Name = "buttonSaveText";
buttonSaveText.Size = new Size(175, 23);
buttonSaveText.TabIndex = 1;
buttonSaveText.Text = "Загрузить в txt";
buttonSaveText.UseVisualStyleBackColor = true;
buttonSaveText.Click += buttonSaveText_Click;
//
// richTextBoxWord
//
richTextBoxWord.Location = new Point(193, 12);
richTextBoxWord.Name = "richTextBoxWord";
richTextBoxWord.Size = new Size(169, 96);
richTextBoxWord.TabIndex = 2;
richTextBoxWord.Text = "";
//
// buttonSaveTextWord
//
buttonSaveTextWord.Location = new Point(193, 114);
buttonSaveTextWord.Name = "buttonSaveTextWord";
buttonSaveTextWord.Size = new Size(169, 23);
buttonSaveTextWord.TabIndex = 3;
buttonSaveTextWord.Text = "Сохранить в word";
buttonSaveTextWord.UseVisualStyleBackColor = true;
buttonSaveTextWord.Click += buttonSaveTextWord_Click;
//
// FormComponents
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Controls.Add(buttonSaveTextWord);
Controls.Add(richTextBoxWord);
Controls.Add(buttonSaveText);
Controls.Add(richTextBoxTest);
Name = "FormComponents";
Text = "Form1";
ResumeLayout(false);
}
#endregion
private ComponentsLibrary.TestComponent testComponent;
private RichTextBox richTextBoxTest;
private Button buttonSaveText;
private ComponentsLibrary.ComponentBigText componentBigText;
private RichTextBox richTextBoxWord;
private Button buttonSaveTextWord;
}
}