1
0
mirror of synced 2024-09-24 11:38:22 +02:00
Switch-Toolbox/Switch_Toolbox_Library/Forms/STConsole.cs

57 lines
1.5 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Drawing;
using System.Threading.Tasks;
using Switch_Toolbox.Library.Forms;
using System.Windows.Forms;
namespace Switch_Toolbox.Library
{
public class STConsole : RichTextBox
{
private static STConsole console;
public static STConsole Instance { get { return console == null || console.IsDisposed ? console = new STConsole() : console; } }
public STConsole()
{
BorderStyle = BorderStyle.None;
Dock = DockStyle.Fill;
BackColor = FormThemes.BaseTheme.ConsoleEditorBackColor;
ForeColor = FormThemes.BaseTheme.TextForeColor;
Multiline = true;
ReadOnly = true;
}
public static void WriteLine(object line, Color? color = null)
{
if (console == null)
return;
WriteLine(line.ToString(), color);
}
public static void WriteLine(string Line, Color? color = null)
{
if (console == null)
return;
Color ForeColor = color ?? FormThemes.BaseTheme.TextForeColor;
console.AppendTextData($"{Line}", ForeColor);
}
private void AppendTextData(string Text, Color color)
{
SelectionStart = TextLength;
SelectionLength = 0;
SelectionColor = color;
AppendText($"{Text}\r\n");
SelectionColor = ForeColor;
}
}
}