|
|
|
<?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="IHM.Desktop.Operations"
|
|
|
|
BackgroundColor="{StaticResource Yellow300Accent}">
|
|
|
|
<VerticalStackLayout Margin="20">
|
|
|
|
<Label
|
|
|
|
Style="{StaticResource TitreWindows}"
|
|
|
|
Text="OPERATION"
|
|
|
|
VerticalOptions="StartAndExpand"/>
|
|
|
|
|
|
|
|
<HorizontalStackLayout HorizontalOptions="Center">
|
|
|
|
<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>
|
|
|
|
</ContentView>
|