CourseWorkKnapsack/forms/InformationForm.Designer.cs
2024-05-20 02:52:44 +04:00

93 lines
3.7 KiB
C#

namespace ProjectKnapsack.forms
{
partial class InformationForm
{
/// <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 Button buttonCloseInfoForm;
private RichTextBox richTextBox1;
private RichTextBox richTextBox2;
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InformationForm));
buttonCloseInfoForm = new Button();
richTextBox1 = new RichTextBox();
richTextBox2 = new RichTextBox();
SuspendLayout();
//
// buttonCloseInfoForm
//
buttonCloseInfoForm.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
buttonCloseInfoForm.Location = new Point(672, 332);
buttonCloseInfoForm.Name = "buttonCloseInfoForm";
buttonCloseInfoForm.Size = new Size(92, 26);
buttonCloseInfoForm.TabIndex = 1;
buttonCloseInfoForm.Text = "Закрыть";
buttonCloseInfoForm.UseVisualStyleBackColor = true;
buttonCloseInfoForm.Click += buttonCloseInfoForm_Click;
//
// richTextBox1
//
richTextBox1.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
richTextBox1.BackColor = SystemColors.ControlLightLight;
richTextBox1.Font = new Font("Times New Roman", 12F, FontStyle.Regular, GraphicsUnit.Point, 204);
richTextBox1.Location = new Point(12, 63);
richTextBox1.Name = "richTextBox1";
richTextBox1.ReadOnly = true;
richTextBox1.Size = new Size(752, 70);
richTextBox1.TabIndex = 2;
richTextBox1.Text = resources.GetString("richTextBox1.Text");
//
// richTextBox2
//
richTextBox2.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
richTextBox2.BackColor = SystemColors.ControlLightLight;
richTextBox2.Font = new Font("Times New Roman", 12F, FontStyle.Regular, GraphicsUnit.Point, 204);
richTextBox2.Location = new Point(12, 178);
richTextBox2.Name = "richTextBox2";
richTextBox2.ReadOnly = true;
richTextBox2.Size = new Size(752, 87);
richTextBox2.TabIndex = 3;
richTextBox2.Text = resources.GetString("richTextBox2.Text");
//
// InformationForm
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = Color.SandyBrown;
ClientSize = new Size(776, 370);
Controls.Add(richTextBox2);
Controls.Add(richTextBox1);
Controls.Add(buttonCloseInfoForm);
Name = "InformationForm";
Text = "InformationForm";
ResumeLayout(false);
}
#endregion
}
}