129 lines
4.2 KiB
C#
129 lines
4.2 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();
|
|
componentTable = new ComponentsLibrary.ComponentTable(components);
|
|
dataGridViewTable = new DataGridView();
|
|
buttonSaveTable = new Button();
|
|
((System.ComponentModel.ISupportInitialize)dataGridViewTable).BeginInit();
|
|
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;
|
|
//
|
|
// dataGridViewTable
|
|
//
|
|
dataGridViewTable.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridViewTable.Location = new Point(12, 143);
|
|
dataGridViewTable.Name = "dataGridViewTable";
|
|
dataGridViewTable.RowTemplate.Height = 25;
|
|
dataGridViewTable.Size = new Size(350, 167);
|
|
dataGridViewTable.TabIndex = 4;
|
|
//
|
|
// buttonSaveTable
|
|
//
|
|
buttonSaveTable.Location = new Point(12, 316);
|
|
buttonSaveTable.Name = "buttonSaveTable";
|
|
buttonSaveTable.Size = new Size(350, 23);
|
|
buttonSaveTable.TabIndex = 5;
|
|
buttonSaveTable.Text = "Сохранить";
|
|
buttonSaveTable.UseVisualStyleBackColor = true;
|
|
buttonSaveTable.Click += buttonSaveTable_Click;
|
|
//
|
|
// FormComponents
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(800, 450);
|
|
Controls.Add(buttonSaveTable);
|
|
Controls.Add(dataGridViewTable);
|
|
Controls.Add(buttonSaveTextWord);
|
|
Controls.Add(richTextBoxWord);
|
|
Controls.Add(buttonSaveText);
|
|
Controls.Add(richTextBoxTest);
|
|
Name = "FormComponents";
|
|
Text = "Form1";
|
|
((System.ComponentModel.ISupportInitialize)dataGridViewTable).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private ComponentsLibrary.TestComponent testComponent;
|
|
private RichTextBox richTextBoxTest;
|
|
private Button buttonSaveText;
|
|
private ComponentsLibrary.ComponentBigText componentBigText;
|
|
private RichTextBox richTextBoxWord;
|
|
private Button buttonSaveTextWord;
|
|
private ComponentsLibrary.ComponentTable componentTable;
|
|
private DataGridView dataGridViewTable;
|
|
private Button buttonSaveTable;
|
|
}
|
|
}
|