30 lines
1.6 KiB
XML
30 lines
1.6 KiB
XML
<?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"
|
|
xmlns:models="clr-namespace:Jugenddienst_Stunden.ViewModels"
|
|
x:Class="Jugenddienst_Stunden.Views.StundenPage"
|
|
Title="StundenPage">
|
|
<ContentPage.BindingContext>
|
|
<models:StundenViewModel />
|
|
</ContentPage.BindingContext>
|
|
<VerticalStackLayout Spacing="10" Margin="15">
|
|
<Label Text="{Binding Message}" />
|
|
|
|
<Button Text="Load data" Command="{Binding LoadDataCommand}" />
|
|
|
|
<Grid RowDefinitions="Auto,Auto,Auto,Auto,Auto" ColumnDefinitions="Auto,*" Margin="10">
|
|
<Label Text="Soll:" Grid.Row="0" />
|
|
<Label Text="Gearbeitet:" Grid.Row="1" />
|
|
<Label Text="Berechnet:" Grid.Row="2" />
|
|
<Label Text="Überstunden Monat:" Grid.Row="3" Margin="0,0,15,0" />
|
|
<Label Text="Überstunden Jahr:" Grid.Row="4" />
|
|
|
|
|
|
<Label BackgroundColor="AliceBlue" Grid.Row="0" Grid.Column="1" Text="{Binding Nominal}" />
|
|
<Label BackgroundColor="AliceBlue" Grid.Row="1" Grid.Column="1" Text="{Binding ZeitDone}" />
|
|
<Label BackgroundColor="AliceBlue" Grid.Row="2" Grid.Column="1" Text="{Binding ZeitCalculated}" />
|
|
<Label BackgroundColor="AliceBlue" Grid.Row="3" Grid.Column="1" Text="{Binding OvertimeMonth}" />
|
|
<Label BackgroundColor="AliceBlue" Grid.Row="4" Grid.Column="1" Text="{Binding Overtime}" />
|
|
</Grid>
|
|
</VerticalStackLayout>
|
|
</ContentPage> |