* Try another approach to remove false ellipses without success (commented).
[master-thesis.git] / Parasitemia / Parasitemia / NumericUpDown.xaml.fs
1 namespace Parasitemia.Views
2
3 open System
4 open System.Windows
5 open System.Windows.Data
6 open System.Windows.Input
7
8 open FsXaml
9
10 type NumericUpDown = XAML<"NumericUpDown.xaml", true>
11
12 type NumericUpDownEvents = Up | Down
13
14 type NumericUpDownController() =
15 inherit UserControlViewController<NumericUpDown>()
16
17