forked from DebugST/STTextBox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFrmAlpha.cs
More file actions
44 lines (40 loc) · 1.33 KB
/
FrmAlpha.cs
File metadata and controls
44 lines (40 loc) · 1.33 KB
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
34
35
36
37
38
39
40
41
42
43
44
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using ST.Library.UI.STTextBox;
namespace STTextBoxTest.Demos
{
public partial class FrmAlpha : Form
{
public FrmAlpha() {
InitializeComponent();
}
protected override void OnLoad(EventArgs e) {
base.OnLoad(e);
this.BackgroundImage = Image.FromFile("./back.jpeg");
this.BackgroundImageLayout = ImageLayout.Stretch;
STTextBox tbx = new STTextBox();
tbx.Dock = DockStyle.Fill;
tbx.Font = new System.Drawing.Font("Consolas", 10);
tbx.SetTextStyleMonitors(new CSharpStyleMonitor());
tbx.BackColor = Color.FromArgb(220, Color.White);
this.Controls.Add(tbx);
string strCode = @"
//this is the code, but slowly.
this.BackgroundImage = Image.FromFile(""./back.jpeg"");
this.BackgroundImageLayout = ImageLayout.Stretch;
STTextBox tbx = new STTextBox();
tbx.Dock = DockStyle.Fill;
tbx.SetTextStyleMonitors(new CSharpStyleMonitor());
tbx.Font = new System.Drawing.Font(""Consolas"", 10);
tbx.BackColor = Color.FromArgb(200, Color.White);
this.Controls.Add(tbx);";
tbx.SetText(strCode.Trim());
}
}
}