blob: e0745d48075084bc9c050f06da03b4b34f17305b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using ShiftOS.Engine;
namespace ShiftOS.WinForms.Controls
{
public class TerminalBox : RichTextBox, ITerminalWidget
{
public void SelectBottom()
{
try
{
this.Select(this.Text.Length, 0);
this.ScrollToCaret();
}
catch { }
}
public void Write(string text)
{
this.Text += Localization.Parse(text);
}
public void WriteLine(string text)
{
this.Text += Localization.Parse(text) + Environment.NewLine;
}
}
}
|