-
-
Notifications
You must be signed in to change notification settings - Fork 213
Expand file tree
/
Copy pathNumericUpDown.xaml
More file actions
21 lines (18 loc) · 666 Bytes
/
NumericUpDown.xaml
File metadata and controls
21 lines (18 loc) · 666 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8"?>
<HorizontalStackLayout xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="MauiConditionView.NumericUpDown">
<Button Text="-"
Clicked="DecrementClicked"
Margin="0,0,5,0"
HeightRequest="40"
WidthRequest="40" />
<Label x:Name="ValueControl"
VerticalOptions="Center"
HorizontalOptions="Center"/>
<Button Text="+"
Clicked="IncrementClicked"
Margin="5,0,0,0"
HeightRequest="40"
WidthRequest="40" />
</HorizontalStackLayout>