-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathValueSetControls.xaml
33 lines (27 loc) · 1.01 KB
/
ValueSetControls.xaml
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
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="MauiControls.ValueSetControls"
Title="ValueSetControls">
<VerticalStackLayout>
<CheckBox IsChecked="True"
IsEnabled="False"/>
<Slider x:Name="slider"
Minimum="0"
Maximum="16"
MinimumTrackColor="Blue"
MaximumTrackColor="Firebrick"
ThumbColor="Aquamarine"
ValueChanged="slider_ValueChanged"/>
<Label x:Name="label"/>
<Stepper x:Name="stepper"
Minimum="2"
Maximum="18"
Increment="2"
ValueChanged="stepper_ValueChanged"/>
<Switch x:Name="switch"
IsToggled="True"/>
<DatePicker/>
<TimePicker/>
</VerticalStackLayout>
</ContentPage>