Lot de vues
continuous-integration/drone/push Build is passing Details

UI_Windows
Raphael LACOTE 2 years ago
commit fef9f3f8f1

@ -5,7 +5,7 @@
Title="Compte"
BackgroundColor="{StaticResource Yellow100Accent}">
<VerticalStackLayout HorizontalOptions="Center">
<Label
<Label
FontAttributes="Bold"
Text="Votre compte"
FontSize="30"/>

@ -13,11 +13,11 @@
<StackLayout BackgroundColor="{StaticResource Gray900}" HorizontalOptions="StartAndExpand" VerticalOptions="FillAndExpand">
<Button Text="ACCUEIL" BackgroundColor="{StaticResource Primary}" TextColor="{StaticResource Yellow300Accent}" Padding="20" Margin="20"></Button>
<Button Text="COMPTE" BackgroundColor="{StaticResource Yellow100Accent}" Padding="20" Margin="20"></Button>
<Button Text="OPERATION" BackgroundColor="{StaticResource Yellow100Accent}" Padding="20" Margin="20"></Button>
<Button Text="ECHEANCIER" BackgroundColor="{StaticResource Yellow100Accent}" Padding="20" Margin="20"></Button>
<Button Text="PLANIFICATION" BackgroundColor="{StaticResource Yellow100Accent}" Padding="20" Margin="20"></Button>
<Button Text="ACCUEIL" BackgroundColor="{StaticResource Primary}" TextColor="{StaticResource Yellow300Accent}" Padding="20" Margin="20" ></Button>
<Button Text="COMPTE" BackgroundColor="{StaticResource Yellow100Accent}" Padding="20" Margin="20" Clicked="Button_compte"></Button>
<Button Text="OPERATION" BackgroundColor="{StaticResource Yellow100Accent}" Padding="20" Margin="20" Clicked="Button_operation"></Button>
<Button Text="ECHEANCIER" BackgroundColor="{StaticResource Yellow100Accent}" Padding="20" Margin="20" Clicked="Button_echeancier"></Button>
<Button Text="PLANIFICATION" BackgroundColor="{StaticResource Yellow100Accent}" Padding="20" Margin="20" Clicked="Button_planification"></Button>
</StackLayout>
</StackLayout>

@ -1,3 +1,5 @@
using Microsoft.Maui.Graphics.Text;
namespace IHM.Desktop;
public partial class Dashboard : ContentPage
@ -6,4 +8,25 @@ public partial class Dashboard : ContentPage
{
InitializeComponent();
}
private void Button_planification(object sender, EventArgs e)
{
Navigation.PushAsync(new Planification());
}
private void Button_echeancier(object sender, EventArgs e)
{
Navigation.PushAsync(new Echeancier());
}
private void Button_operation(object sender, EventArgs e)
{
Navigation.PushAsync(new Operations());
}
private void Button_compte(object sender, EventArgs e)
{
Navigation.PushAsync(new Compte());
}
}

@ -0,0 +1,12 @@
<?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"
x:Class="IHM.Desktop.Echeancier"
Title="Echeancier">
<VerticalStackLayout>
<Label
Text="Welcome to .NET MAUI!"
VerticalOptions="Center"
HorizontalOptions="Center" />
</VerticalStackLayout>
</ContentPage>

@ -0,0 +1,9 @@
namespace IHM.Desktop;
public partial class Echeancier : ContentPage
{
public Echeancier()
{
InitializeComponent();
}
}

@ -3,10 +3,23 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="IHM.Desktop.Planification"
Title="Planification">
<VerticalStackLayout>
<Label
Text="Welcome to .NET MAUI!"
VerticalOptions="Center"
HorizontalOptions="Center" />
</VerticalStackLayout>
<StackLayout BackgroundColor="{StaticResource Yellow300Accent}" >
<StackLayout BackgroundColor="{StaticResource Gray900}" VerticalOptions="Start">
<Button Text="Mon compte" BackgroundColor="{StaticResource Yellow100Accent}" Padding="10" Margin="10" HorizontalOptions="End"></Button>
</StackLayout>
<StackLayout BackgroundColor="{StaticResource Gray900}" HorizontalOptions="StartAndExpand" VerticalOptions="FillAndExpand">
<Button Text="ACCUEIL" BackgroundColor="{StaticResource Yellow100Accent}" Padding="20" Margin="20" ></Button>
<Button Text="COMPTE" BackgroundColor="{StaticResource Yellow100Accent}" Padding="20" Margin="20"></Button>
<Button Text="OPERATION" BackgroundColor="{StaticResource Yellow100Accent}" Padding="20" Margin="20"></Button>
<Button Text="ECHEANCIER" BackgroundColor="{StaticResource Yellow100Accent}" Padding="20" Margin="20"></Button>
<Button Text="PLANIFICATION" BackgroundColor="{StaticResource Primary}" TextColor="{StaticResource Yellow300Accent}" Padding="20" Margin="20" ></Button>
</StackLayout>
</StackLayout>
</ContentPage>

@ -99,6 +99,9 @@
<MauiXaml Update="Desktop\DashBoard.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="Desktop\Echeancier.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="Desktop\ForgetPassword.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>

Loading…
Cancel
Save