From e3911d260078d36257850c11c4ea1d20481a3def Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9leste=20BARBOSA?= Date: Sat, 23 Mar 2024 10:59:58 +0100 Subject: [PATCH] Ajout de la solution --- mastermind/App.xaml | 14 + mastermind/App.xaml.cs | 12 + mastermind/AppShell.xaml | 18 + mastermind/AppShell.xaml.cs | 10 + mastermind/MainPage.xaml | 36 ++ mastermind/MainPage.xaml.cs | 25 + mastermind/MauiProgram.cs | 25 + mastermind/Resources/AppIcon/appicon.svg | 4 + mastermind/Resources/AppIcon/appiconfg.svg | 8 + .../Resources/Fonts/OpenSans-Regular.ttf | Bin 0 -> 107184 bytes .../Resources/Fonts/OpenSans-Semibold.ttf | Bin 0 -> 111056 bytes mastermind/Resources/Images/dotnet_bot.png | Bin 0 -> 69811 bytes mastermind/Resources/Raw/AboutAssets.txt | 15 + mastermind/Resources/Splash/splash.svg | 8 + mastermind/Resources/Styles/Colors.xaml | 45 ++ mastermind/Resources/Styles/Styles.xaml | 426 ++++++++++++++++++ mastermind/mastermind.csproj | 65 +++ 17 files changed, 711 insertions(+) create mode 100644 mastermind/App.xaml create mode 100644 mastermind/App.xaml.cs create mode 100644 mastermind/AppShell.xaml create mode 100644 mastermind/AppShell.xaml.cs create mode 100644 mastermind/MainPage.xaml create mode 100644 mastermind/MainPage.xaml.cs create mode 100644 mastermind/MauiProgram.cs create mode 100644 mastermind/Resources/AppIcon/appicon.svg create mode 100644 mastermind/Resources/AppIcon/appiconfg.svg create mode 100644 mastermind/Resources/Fonts/OpenSans-Regular.ttf create mode 100644 mastermind/Resources/Fonts/OpenSans-Semibold.ttf create mode 100644 mastermind/Resources/Images/dotnet_bot.png create mode 100644 mastermind/Resources/Raw/AboutAssets.txt create mode 100644 mastermind/Resources/Splash/splash.svg create mode 100644 mastermind/Resources/Styles/Colors.xaml create mode 100644 mastermind/Resources/Styles/Styles.xaml create mode 100644 mastermind/mastermind.csproj diff --git a/mastermind/App.xaml b/mastermind/App.xaml new file mode 100644 index 0000000..b850e1e --- /dev/null +++ b/mastermind/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/mastermind/App.xaml.cs b/mastermind/App.xaml.cs new file mode 100644 index 0000000..ad9efe4 --- /dev/null +++ b/mastermind/App.xaml.cs @@ -0,0 +1,12 @@ +namespace mastermind +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } + } +} diff --git a/mastermind/AppShell.xaml b/mastermind/AppShell.xaml new file mode 100644 index 0000000..f4e7ab9 --- /dev/null +++ b/mastermind/AppShell.xaml @@ -0,0 +1,18 @@ + + + + + + + + + diff --git a/mastermind/AppShell.xaml.cs b/mastermind/AppShell.xaml.cs new file mode 100644 index 0000000..0fcecd0 --- /dev/null +++ b/mastermind/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace mastermind +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} diff --git a/mastermind/MainPage.xaml b/mastermind/MainPage.xaml new file mode 100644 index 0000000..031f06f --- /dev/null +++ b/mastermind/MainPage.xaml @@ -0,0 +1,36 @@ + + + + + + + +