From 0367cf5614ce15080851f93c5ccb6d6dc4c71412 Mon Sep 17 00:00:00 2001 From: syneffort Date: Fri, 16 Feb 2024 16:59:54 +0900 Subject: [PATCH] commit --- MyFirstMauiApp/MauiUI/MainPage.xaml | 1 + MyFirstMauiApp/MyFirstMauiApp.sln | 8 + MyFirstMauiApp/PageLayout/App.xaml | 14 + MyFirstMauiApp/PageLayout/App.xaml.cs | 12 + MyFirstMauiApp/PageLayout/AppShell.xaml | 14 + MyFirstMauiApp/PageLayout/AppShell.xaml.cs | 10 + MyFirstMauiApp/PageLayout/MainPage.xaml | 41 ++ MyFirstMauiApp/PageLayout/MainPage.xaml.cs | 25 ++ MyFirstMauiApp/PageLayout/MauiProgram.cs | 25 ++ MyFirstMauiApp/PageLayout/PageLayout.csproj | 55 +++ .../Platforms/Android/AndroidManifest.xml | 6 + .../Platforms/Android/MainActivity.cs | 11 + .../Platforms/Android/MainApplication.cs | 16 + .../Android/Resources/values/colors.xml | 6 + .../Platforms/MacCatalyst/AppDelegate.cs | 10 + .../Platforms/MacCatalyst/Info.plist | 30 ++ .../Platforms/MacCatalyst/Program.cs | 16 + .../PageLayout/Platforms/Tizen/Main.cs | 17 + .../Platforms/Tizen/tizen-manifest.xml | 15 + .../PageLayout/Platforms/Windows/App.xaml | 8 + .../PageLayout/Platforms/Windows/App.xaml.cs | 25 ++ .../Platforms/Windows/Package.appxmanifest | 46 ++ .../PageLayout/Platforms/Windows/app.manifest | 15 + .../PageLayout/Platforms/iOS/AppDelegate.cs | 10 + .../PageLayout/Platforms/iOS/Info.plist | 32 ++ .../PageLayout/Platforms/iOS/Program.cs | 16 + .../PageLayout/Properties/launchSettings.json | 8 + .../PageLayout/Resources/AppIcon/appicon.svg | 4 + .../Resources/AppIcon/appiconfg.svg | 8 + .../Resources/Fonts/OpenSans-Regular.ttf | Bin 0 -> 107168 bytes .../Resources/Fonts/OpenSans-Semibold.ttf | Bin 0 -> 111060 bytes .../Resources/Images/dotnet_bot.svg | 93 ++++ .../PageLayout/Resources/Raw/AboutAssets.txt | 15 + .../PageLayout/Resources/Splash/splash.svg | 8 + .../PageLayout/Resources/Styles/Colors.xaml | 44 ++ .../PageLayout/Resources/Styles/Styles.xaml | 405 ++++++++++++++++++ 36 files changed, 1069 insertions(+) create mode 100644 MyFirstMauiApp/PageLayout/App.xaml create mode 100644 MyFirstMauiApp/PageLayout/App.xaml.cs create mode 100644 MyFirstMauiApp/PageLayout/AppShell.xaml create mode 100644 MyFirstMauiApp/PageLayout/AppShell.xaml.cs create mode 100644 MyFirstMauiApp/PageLayout/MainPage.xaml create mode 100644 MyFirstMauiApp/PageLayout/MainPage.xaml.cs create mode 100644 MyFirstMauiApp/PageLayout/MauiProgram.cs create mode 100644 MyFirstMauiApp/PageLayout/PageLayout.csproj create mode 100644 MyFirstMauiApp/PageLayout/Platforms/Android/AndroidManifest.xml create mode 100644 MyFirstMauiApp/PageLayout/Platforms/Android/MainActivity.cs create mode 100644 MyFirstMauiApp/PageLayout/Platforms/Android/MainApplication.cs create mode 100644 MyFirstMauiApp/PageLayout/Platforms/Android/Resources/values/colors.xml create mode 100644 MyFirstMauiApp/PageLayout/Platforms/MacCatalyst/AppDelegate.cs create mode 100644 MyFirstMauiApp/PageLayout/Platforms/MacCatalyst/Info.plist create mode 100644 MyFirstMauiApp/PageLayout/Platforms/MacCatalyst/Program.cs create mode 100644 MyFirstMauiApp/PageLayout/Platforms/Tizen/Main.cs create mode 100644 MyFirstMauiApp/PageLayout/Platforms/Tizen/tizen-manifest.xml create mode 100644 MyFirstMauiApp/PageLayout/Platforms/Windows/App.xaml create mode 100644 MyFirstMauiApp/PageLayout/Platforms/Windows/App.xaml.cs create mode 100644 MyFirstMauiApp/PageLayout/Platforms/Windows/Package.appxmanifest create mode 100644 MyFirstMauiApp/PageLayout/Platforms/Windows/app.manifest create mode 100644 MyFirstMauiApp/PageLayout/Platforms/iOS/AppDelegate.cs create mode 100644 MyFirstMauiApp/PageLayout/Platforms/iOS/Info.plist create mode 100644 MyFirstMauiApp/PageLayout/Platforms/iOS/Program.cs create mode 100644 MyFirstMauiApp/PageLayout/Properties/launchSettings.json create mode 100644 MyFirstMauiApp/PageLayout/Resources/AppIcon/appicon.svg create mode 100644 MyFirstMauiApp/PageLayout/Resources/AppIcon/appiconfg.svg create mode 100644 MyFirstMauiApp/PageLayout/Resources/Fonts/OpenSans-Regular.ttf create mode 100644 MyFirstMauiApp/PageLayout/Resources/Fonts/OpenSans-Semibold.ttf create mode 100644 MyFirstMauiApp/PageLayout/Resources/Images/dotnet_bot.svg create mode 100644 MyFirstMauiApp/PageLayout/Resources/Raw/AboutAssets.txt create mode 100644 MyFirstMauiApp/PageLayout/Resources/Splash/splash.svg create mode 100644 MyFirstMauiApp/PageLayout/Resources/Styles/Colors.xaml create mode 100644 MyFirstMauiApp/PageLayout/Resources/Styles/Styles.xaml diff --git a/MyFirstMauiApp/MauiUI/MainPage.xaml b/MyFirstMauiApp/MauiUI/MainPage.xaml index e68561a..0ebd7fa 100644 --- a/MyFirstMauiApp/MauiUI/MainPage.xaml +++ b/MyFirstMauiApp/MauiUI/MainPage.xaml @@ -14,6 +14,7 @@ +