-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDecimalTextBox.cs
More file actions
77 lines (65 loc) · 1.78 KB
/
DecimalTextBox.cs
File metadata and controls
77 lines (65 loc) · 1.78 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
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp1
{
public partial class DecimalTextBox : TextBox
{
protected override void OnTextChanged(EventArgs e)
{
if (IsDecimal())
base.OnTextChanged(e);
}
protected override void OnKeyPress(KeyPressEventArgs e)
{
if (!char.IsNumber(e.KeyChar)
&& ((Keys)e.KeyChar != Keys.Back)
&& (e.KeyChar != ','))
e.Handled = true;
if (e.KeyChar == ',' && Text.IndexOf(',') > 0)
e.Handled = true;
base.OnKeyPress(e);
}
protected override void OnGotFocus(EventArgs e)
{
ResetValueOnFocus();
base.OnGotFocus(e);
}
private void ResetValueOnFocus()
{
if (IsDecimal())
{
if (!IsDecimalZero())
return;
}
Text = "";
}
private bool IsDecimal()
{
decimal result;
return decimal.TryParse(Text, out result);
}
private bool IsDecimalZero()
{
return (decimal.Parse(Text) == 0);
}
private void DecimalTextBox_Validating(object sender, CancelEventArgs e)
{
decimal value;
decimal.TryParse(Text, out value);
const string NUMBER_FORMAT_2_DIGITS = "N2";
Text = value.ToString(NUMBER_FORMAT_2_DIGITS);
}
public decimal Value
{
get
{
return decimal.Parse(Text ?? "0");
}
}
}
}