|
|
@ -2,11 +2,35 @@
|
|
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
x:Class="IHM.Desktop.Operations"
|
|
|
|
x:Class="IHM.Desktop.Operations"
|
|
|
|
Title="Operations">
|
|
|
|
Title="Operations"
|
|
|
|
|
|
|
|
BackgroundColor="{StaticResource Yellow300Accent}">
|
|
|
|
<VerticalStackLayout>
|
|
|
|
<VerticalStackLayout>
|
|
|
|
<Label
|
|
|
|
<Label
|
|
|
|
Text="Welcome to .NET MAUI!"
|
|
|
|
Style="{StaticResource TitreWindows}"
|
|
|
|
VerticalOptions="Center"
|
|
|
|
Text="OPERATION"
|
|
|
|
HorizontalOptions="Center" />
|
|
|
|
VerticalOptions="StartAndExpand"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<HorizontalStackLayout>
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
|
|
|
x:Name="AddCredit"
|
|
|
|
|
|
|
|
Text="Effectuer un crédit"
|
|
|
|
|
|
|
|
Style="{StaticResource WindowsButton}"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
|
|
|
x:Name="RetireOperation"
|
|
|
|
|
|
|
|
Text="Retirer une opération"
|
|
|
|
|
|
|
|
Style="{StaticResource WindowsButton}"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
|
|
|
x:Name="AddDebit"
|
|
|
|
|
|
|
|
Text="effectuer un débit"
|
|
|
|
|
|
|
|
Style="{StaticResource WindowsButton}"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
|
|
|
x:Name="DelOperation"
|
|
|
|
|
|
|
|
Text="Supprimer une opération"
|
|
|
|
|
|
|
|
Style="{StaticResource WindowsButton}"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
</VerticalStackLayout>
|
|
|
|
</VerticalStackLayout>
|
|
|
|
</ContentPage>
|
|
|
|
</ContentPage>
|