Remove useless 'yield'
[master-thesis.git] / Parasitemia / ParasitemiaUI / XAML / NumericUpDown.xaml.fs
1 namespace ParasitemiaUI.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<"XAML/NumericUpDown.xaml", true>
11
12 type NumericUpDownEvents = Up | Down
13
14 type NumericUpDownController() =
15 inherit UserControlViewController<NumericUpDown>()
16
17