PIbd-31_Malafeev.L.S._COP_25/Cop_25/Forms/FormMain.Designer.cs

132 lines
5.0 KiB
C#
Raw Normal View History

2024-09-06 00:43:56 +04:00
namespace Forms
{
partial class FormMain
{
/// <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();
2024-10-06 18:45:39 +04:00
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMain));
2024-09-06 00:43:56 +04:00
toolTip = new ToolTip(components);
2024-10-06 17:39:02 +04:00
largeTextComponent1 = new Controls.LargeTextComponent(components);
buttonLargeText = new Button();
2024-10-06 18:45:39 +04:00
tableComponent1 = new Controls.TableComponent(components);
button1 = new Button();
diagramComponent1 = new Controls.DiagramComponent(components);
button2 = new Button();
pictureBox1 = new PictureBox();
textBox1 = new TextBox();
((System.ComponentModel.ISupportInitialize)pictureBox1).BeginInit();
2024-09-06 00:43:56 +04:00
SuspendLayout();
//
2024-10-06 18:45:39 +04:00
// toolTip
2024-09-06 00:43:56 +04:00
//
2024-10-06 18:45:39 +04:00
toolTip.ToolTipTitle = "AAAA";
2024-09-06 00:43:56 +04:00
//
2024-10-06 18:45:39 +04:00
// buttonLargeText
2024-09-06 00:43:56 +04:00
//
2024-10-06 18:45:39 +04:00
buttonLargeText.Location = new Point(28, 21);
buttonLargeText.Name = "buttonLargeText";
buttonLargeText.Size = new Size(310, 51);
buttonLargeText.TabIndex = 9;
buttonLargeText.Text = "СОЗДАТЬ PDF ТЕКСТ";
buttonLargeText.UseVisualStyleBackColor = true;
buttonLargeText.Click += buttonLargeText_CLick;
2024-09-06 00:43:56 +04:00
//
2024-10-06 18:45:39 +04:00
// button1
2024-09-06 00:43:56 +04:00
//
2024-10-06 18:45:39 +04:00
button1.Location = new Point(28, 94);
button1.Name = "button1";
button1.Size = new Size(310, 66);
button1.TabIndex = 10;
button1.Text = "СОЗДАТЬ ТАБЛИЦУ PDF";
button1.UseVisualStyleBackColor = true;
button1.Click += buttonCreateTable_Click;
2024-09-06 00:43:56 +04:00
//
2024-10-06 18:45:39 +04:00
// button2
2024-09-06 00:43:56 +04:00
//
2024-10-06 18:45:39 +04:00
button2.Location = new Point(28, 185);
button2.Name = "button2";
button2.Size = new Size(310, 72);
button2.TabIndex = 11;
button2.Text = "СОЗДАТЬ ДИАГРАММУ PDF";
button2.UseVisualStyleBackColor = true;
button2.Click += buttonDiagram_Click;
2024-09-06 00:43:56 +04:00
//
2024-10-06 18:45:39 +04:00
// pictureBox1
2024-09-06 00:43:56 +04:00
//
2024-10-06 18:45:39 +04:00
pictureBox1.BackgroundImage = (Image)resources.GetObject("pictureBox1.BackgroundImage");
pictureBox1.BackgroundImageLayout = ImageLayout.Stretch;
pictureBox1.Location = new Point(359, 21);
pictureBox1.Name = "pictureBox1";
2024-10-07 11:33:14 +04:00
pictureBox1.Size = new Size(364, 348);
2024-10-06 18:45:39 +04:00
pictureBox1.TabIndex = 12;
pictureBox1.TabStop = false;
2024-09-06 00:43:56 +04:00
//
2024-10-06 18:45:39 +04:00
// textBox1
2024-10-06 17:39:02 +04:00
//
2024-10-07 11:33:14 +04:00
textBox1.Location = new Point(371, 314);
2024-10-06 18:45:39 +04:00
textBox1.Name = "textBox1";
textBox1.Size = new Size(336, 27);
textBox1.TabIndex = 13;
textBox1.Text = "НАЖМИТЕ НА КНОПКУ ЧТОБЫ СОЗДАТЬ";
textBox1.TextAlign = HorizontalAlignment.Center;
2024-10-07 11:33:14 +04:00
textBox1.TextChanged += textBox1_TextChanged;
2024-10-06 17:39:02 +04:00
//
2024-09-06 00:43:56 +04:00
// FormMain
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
2024-10-06 18:45:39 +04:00
ClientSize = new Size(806, 381);
Controls.Add(textBox1);
Controls.Add(button2);
2024-10-06 17:39:02 +04:00
Controls.Add(buttonLargeText);
2024-09-06 00:43:56 +04:00
Controls.Add(button1);
2024-10-06 18:45:39 +04:00
Controls.Add(pictureBox1);
2024-09-06 00:43:56 +04:00
Name = "FormMain";
Text = "FormMain";
2024-10-06 18:45:39 +04:00
((System.ComponentModel.ISupportInitialize)pictureBox1).EndInit();
2024-09-06 00:43:56 +04:00
ResumeLayout(false);
PerformLayout();
}
2024-10-06 17:39:02 +04:00
private void ButtonLargeText_Click(object sender, EventArgs e)
{
throw new NotImplementedException();
}
2024-10-06 18:45:39 +04:00
#endregion
2024-09-06 00:43:56 +04:00
private ToolTip toolTip;
2024-10-06 17:39:02 +04:00
private Controls.LargeTextComponent largeTextComponent1;
private Button buttonLargeText;
2024-10-06 18:45:39 +04:00
private Controls.TableComponent tableComponent1;
private Button button1;
private Controls.DiagramComponent diagramComponent1;
private Button button2;
private PictureBox pictureBox1;
private TextBox textBox1;
2024-09-06 00:43:56 +04:00
}
}