You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.5 KiB
32 lines
1.5 KiB
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="PageLayout.ByGridLayout">
|
|
|
|
<Grid RowDefinitions="Auto,Auto,Auto,*,Auto,Auto,Auto"
|
|
ColumnDefinitions="*,*"
|
|
Padding="40">
|
|
|
|
<Label Grid.Row="0" Grid.Column="0" Text="Bill" VerticalTextAlignment="Center"/>
|
|
<Entry x:Name="billInput" Placeholder="Enter Amount" Keyboard="Numeric"
|
|
Grid.Row="0" Grid.Column="1" />
|
|
|
|
<Label Grid.Row="1" Grid.Column="0" Text="Tip" />
|
|
<Label Grid.Row="1" Grid.Column="1" x:Name="tipOutput" Text="0.00" />
|
|
|
|
<Label Grid.Row="2" Grid.Column="0" Text="Total" />
|
|
<Label x:Name="totalOutput" Text="0.00"
|
|
Grid.Row="2" Grid.Column="1"/>
|
|
|
|
<Label Grid.Row="3" Grid.Column="0" Text="Tip Percentage" />
|
|
<Label Grid.Row="3" Grid.Column="1" x:Name="tipPercent" Text="15%" />
|
|
<Slider Grid.Row="4" Grid.Column="0" Grid.ColumnSpan="2" x:Name="tipPercentSlider" Minimum="0" Maximum="100" Value="15" />
|
|
|
|
<Button Grid.Row="5" Grid.Column="0" Margin="5" Text="15%" />
|
|
<Button Grid.Row="5" Grid.Column="1" Margin="5" Text="20%" />
|
|
|
|
<Button Grid.Row="6" Grid.Column="0" Margin="5" x:Name="roundDown" Text="Round Down" />
|
|
<Button Grid.Row="6" Grid.Column="1" Margin="5" x:Name="roundUp" Text="Round Up" />
|
|
</Grid>
|
|
|
|
</ContentView>
|
|
|