mirror of
https://github.com/Novetus/Novetus_src.git
synced 2025-02-01 02:03:02 +02:00
71 lines
3.1 KiB
C#
71 lines
3.1 KiB
C#
namespace NovetusLauncher
|
|
{
|
|
partial class NovetusConsole
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NovetusConsole));
|
|
this.ConsoleBox = new System.Windows.Forms.RichTextBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// ConsoleBox
|
|
//
|
|
this.ConsoleBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.ConsoleBox.BackColor = System.Drawing.Color.Black;
|
|
this.ConsoleBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
|
this.ConsoleBox.Font = new System.Drawing.Font("Consolas", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.ConsoleBox.ForeColor = System.Drawing.Color.White;
|
|
this.ConsoleBox.Location = new System.Drawing.Point(0, 0);
|
|
this.ConsoleBox.Name = "ConsoleBox";
|
|
this.ConsoleBox.Size = new System.Drawing.Size(857, 411);
|
|
this.ConsoleBox.TabIndex = 0;
|
|
this.ConsoleBox.Text = "";
|
|
this.ConsoleBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ProcessConsole);
|
|
//
|
|
// NovetusConsole
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(858, 411);
|
|
this.Controls.Add(this.ConsoleBox);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MinimumSize = new System.Drawing.Size(357, 205);
|
|
this.Name = "NovetusConsole";
|
|
this.Text = "Console";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ConsoleClose);
|
|
this.Load += new System.EventHandler(this.NovetusConsole_Load);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
public System.Windows.Forms.RichTextBox ConsoleBox;
|
|
}
|
|
} |