Statistiques
| Branche: | Révision:

root / GES_PAC / Controls / DoubleEntry.cs @ e837cdf1

Historique | Voir | Annoter | Télécharger (349 octets)

1
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
}