TextBox - potatoscript/csharp GitHub Wiki
Change TextBox Location
textBox1.Location = new Point(15,20);
RichTextBoxExtensions:
public static class RichTextBoxExtensions
{
public static void AppendText(this RichTextBox box, string text, color color)
{
box.SelectionStart = box.TextLength;
box.SelectionLength = 0;
box.SelectionFont = new Font("Arial", 16.0f, FontStyle.Bold);
box.SelectionColor = color;
box.AppendText(text);
box.SelectionColor = box.ForeColor;
box.SelectionFont = new Font("Arial", 16.0f, FontStyle.Regular);
}
}