root / GES_PAC / Controls / DoubleEntry.cs @ 42456640
Historique | Voir | Annoter | Télécharger (349 octets)
1 | 12ddf7ef | lbihannic | using System.Globalization; |
---|---|---|---|
2 | |||
3 | namespace GES_PAC.Controls |
||
4 | { |
||
5 | public class DoubleEntry : Entry |
||
6 | { |
||
7 | public DoubleEntry() |
||
8 | { |
||
9 | Keyboard = Keyboard.Numeric; |
||
10 | PlaceholderColor = Colors.LightGray; |
||
11 | TextColor = Colors.Black; |
||
12 | Placeholder = "0,0"; |
||
13 | FontSize = 16; |
||
14 | } |
||
15 | } |
||
16 | } |