-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSkeetTextBox.cs
292 lines (255 loc) · 7.9 KB
/
SkeetTextBox.cs
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Drawing.Text;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace SkeetFramework
{
[DefaultEvent("TextChanged")]
public class SkeetTextBox : Control
{
private int W;
private int H;
private System.Windows.Forms.TextBox TB;
private HorizontalAlignment _TextAlign = HorizontalAlignment.Left;
[Category("Options")]
public HorizontalAlignment TextAlign
{
get { return _TextAlign; }
set
{
_TextAlign = value;
if (TB != null)
{
TB.TextAlign = value;
}
}
}
private int _MaxLength = 32767;
[Category("Options")]
public int MaxLength
{
get { return _MaxLength; }
set
{
_MaxLength = value;
if (TB != null)
{
TB.MaxLength = value;
}
}
}
private bool _ReadOnly;
[Category("Options")]
public bool ReadOnly
{
get { return _ReadOnly; }
set
{
_ReadOnly = value;
if (TB != null)
{
TB.ReadOnly = value;
}
}
}
private bool _UseSystemPasswordChar;
[Category("Options")]
public bool UseSystemPasswordChar
{
get { return _UseSystemPasswordChar; }
set
{
_UseSystemPasswordChar = value;
if (TB != null)
{
TB.UseSystemPasswordChar = value;
}
}
}
private bool _Multiline;
[Category("Options")]
public bool Multiline
{
get { return _Multiline; }
set
{
_Multiline = value;
if (TB != null)
{
TB.Multiline = value;
if (value)
{
TB.Height = Height - 11;
}
else
{
Height = TB.Height + 11;
}
}
}
}
private bool _FocusOnHover = false;
[Category("Options")]
public bool FocusOnHover
{
get { return _FocusOnHover; }
set { _FocusOnHover = value; }
}
[Category("Options")]
public override string Text
{
get { return base.Text; }
set
{
base.Text = value;
if (TB != null)
{
TB.Text = value;
}
}
}
[Category("Options")]
public override Font Font
{
get { return base.Font; }
set
{
base.Font = value;
if (TB != null)
{
TB.Font = value;
TB.Location = new Point(3, 5);
TB.Width = Width - 6;
if (!_Multiline)
{
Height = TB.Height + 11;
}
}
}
}
protected override void OnCreateControl()
{
base.OnCreateControl();
if (!Controls.Contains(TB))
{
Controls.Add(TB);
}
}
private void OnBaseTextChanged(object s, EventArgs e)
{
Text = TB.Text;
}
private void OnBaseKeyDown(object s, KeyEventArgs e)
{
if (e.Control && e.KeyCode == Keys.A)
{
TB.SelectAll();
e.SuppressKeyPress = true;
}
if (e.Control && e.KeyCode == Keys.C)
{
TB.Copy();
e.SuppressKeyPress = true;
}
}
protected override void OnResize(EventArgs e)
{
TB.Location = new Point(5, 5);
TB.Width = Width - 10;
if (_Multiline)
{
TB.Height = Height - 11;
}
else
{
Height = TB.Height + 11;
}
base.OnResize(e);
}
[Category("Colors")]
public Color TextColor
{
get { return _TextColor; }
set { _TextColor = value; }
}
public override Color ForeColor
{
get { return _TextColor; }
set { _TextColor = value; }
}
protected override void OnMouseDown(MouseEventArgs e)
{
base.OnMouseDown(e);
Invalidate();
}
protected override void OnMouseUp(MouseEventArgs e)
{
base.OnMouseUp(e);
TB.Focus();
Invalidate();
}
protected override void OnMouseEnter(EventArgs e)
{
base.OnMouseEnter(e);
if (FocusOnHover) TB.Focus();
Invalidate();
}
protected override void OnMouseLeave(EventArgs e)
{
base.OnMouseLeave(e);
Invalidate();
}
private Color _BaseColor = Color.FromArgb(25,25,25);
private Color _TextColor = Color.FromArgb(192, 192, 192);
private Color _BorderColor = Color.FromArgb(21, 21, 21);
public SkeetTextBox()
{
SetStyle(ControlStyles.AllPaintingInWmPaint | ControlStyles.UserPaint | ControlStyles.ResizeRedraw | ControlStyles.OptimizedDoubleBuffer | ControlStyles.SupportsTransparentBackColor, true);
DoubleBuffered = true;
BackColor = Color.Transparent;
TB = new System.Windows.Forms.TextBox();
TB.Font = new Font("Verdana", 7);
TB.Text = Text;
TB.BackColor = _BaseColor;
TB.ForeColor = _TextColor;
TB.MaxLength = _MaxLength;
TB.Multiline = _Multiline;
TB.ReadOnly = _ReadOnly;
TB.UseSystemPasswordChar = _UseSystemPasswordChar;
TB.BorderStyle = BorderStyle.None;
TB.Location = new Point(5, 5);
TB.Width = Width - 10;
TB.Cursor = Cursors.IBeam;
if (_Multiline)
{
TB.Height = Height - 11;
}
else
{
Height = TB.Height + 11;
}
TB.TextChanged += OnBaseTextChanged;
TB.KeyDown += OnBaseKeyDown;
}
public Color ColorTop { get; set; } = Color.FromArgb(23, 23, 23);
public Color ColorBottom { get; set; } = Color.FromArgb(25, 25, 25);
private StringFormat strFormat = new StringFormat();
public Pen FakeWhite { get; set; } = new Pen(Color.FromArgb(50, 50, 50));
protected override void OnPaint(PaintEventArgs e)
{
Rectangle ree = new Rectangle(0, 0, Width - 1, Height - 1);
Rectangle ree2 = new Rectangle(1, 1, Width - 3, Height - 3);
LinearGradientBrush gradient = new LinearGradientBrush(ree, this.ColorBottom, this.ColorTop, 90.0f);
e.Graphics.FillRectangle(gradient, ree);
e.Graphics.DrawRectangle(Pens.Black, ree);
e.Graphics.DrawRectangle(FakeWhite, ree2);
base.OnPaint(e);
}
}
}