Files
app/APP/LogWin.Designer.cs
2022-04-19 00:05:16 +02:00

66 lines
2.3 KiB
C#

namespace APP
{
partial class LogWin
{
/// <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()
{
this.logBox = new System.Windows.Forms.RichTextBox();
this.SuspendLayout();
//
// logBox
//
this.logBox.BackColor = System.Drawing.Color.Black;
this.logBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.logBox.ForeColor = System.Drawing.Color.White;
this.logBox.Location = new System.Drawing.Point(0, 0);
this.logBox.Name = "logBox";
this.logBox.ReadOnly = true;
this.logBox.Size = new System.Drawing.Size(800, 450);
this.logBox.TabIndex = 0;
this.logBox.Text = "";
this.logBox.WordWrap = false;
//
// LogWin
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.logBox);
this.Name = "LogWin";
this.ShowIcon = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Log";
this.ResumeLayout(false);
}
#endregion
private RichTextBox logBox;
}
}