-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDynamicText.cs
43 lines (38 loc) · 1.22 KB
/
DynamicText.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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Calculator {
abstract class DynamicText : INotifyPropertyChanged {
protected string _text;
public string text{
get{ return _text; }
set {
_text=value;
OnPropertyChanged("");
}
}
public DynamicText() {
text="0";
}
public abstract void Append(string s);
public abstract void Delete();
public abstract void Clear();
public virtual string FormattedText() {
decimal.TryParse(_text, out decimal n);
return n.ToString("N");
}
public override string ToString() {
return text;
}
protected void OnPropertyChanged([System.Runtime.CompilerServices.CallerMemberName] string propertyName = null) {
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
#region INotifyPropertyChanged Members
public event PropertyChangedEventHandler PropertyChanged;
#endregion
}
}