From eaca04e5b69b818dfc8f15e9150fe67f52e93140 Mon Sep 17 00:00:00 2001 From: syneffort Date: Fri, 16 Feb 2024 16:20:46 +0900 Subject: [PATCH] Note app --- MyFirstMauiApp/.vscode/launch.json | 14 + MyFirstMauiApp/MauiUI/App.xaml | 14 + MyFirstMauiApp/MauiUI/App.xaml.cs | 12 + MyFirstMauiApp/MauiUI/AppShell.xaml | 14 + MyFirstMauiApp/MauiUI/AppShell.xaml.cs | 10 + MyFirstMauiApp/MauiUI/MainPage.xaml | 35 ++ MyFirstMauiApp/MauiUI/MainPage.xaml.cs | 34 ++ MyFirstMauiApp/MauiUI/MauiProgram.cs | 25 ++ MyFirstMauiApp/MauiUI/MauiUI.csproj | 55 +++ .../Platforms/Android/AndroidManifest.xml | 6 + .../MauiUI/Platforms/Android/MainActivity.cs | 11 + .../Platforms/Android/MainApplication.cs | 16 + .../Android/Resources/values/colors.xml | 6 + .../Platforms/MacCatalyst/AppDelegate.cs | 10 + .../MauiUI/Platforms/MacCatalyst/Info.plist | 30 ++ .../MauiUI/Platforms/MacCatalyst/Program.cs | 16 + MyFirstMauiApp/MauiUI/Platforms/Tizen/Main.cs | 17 + .../MauiUI/Platforms/Tizen/tizen-manifest.xml | 15 + .../MauiUI/Platforms/Windows/App.xaml | 8 + .../MauiUI/Platforms/Windows/App.xaml.cs | 25 ++ .../Platforms/Windows/Package.appxmanifest | 46 ++ .../MauiUI/Platforms/Windows/app.manifest | 15 + .../MauiUI/Platforms/iOS/AppDelegate.cs | 10 + .../MauiUI/Platforms/iOS/Info.plist | 32 ++ .../MauiUI/Platforms/iOS/Program.cs | 16 + .../MauiUI/Properties/launchSettings.json | 8 + .../MauiUI/Resources/AppIcon/appicon.svg | 4 + .../MauiUI/Resources/AppIcon/appiconfg.svg | 8 + .../Resources/Fonts/OpenSans-Regular.ttf | Bin 0 -> 107168 bytes .../Resources/Fonts/OpenSans-Semibold.ttf | Bin 0 -> 111060 bytes .../MauiUI/Resources/Images/dotnet_bot.svg | 93 ++++ .../MauiUI/Resources/Raw/AboutAssets.txt | 15 + .../MauiUI/Resources/Splash/splash.svg | 8 + .../MauiUI/Resources/Styles/Colors.xaml | 44 ++ .../MauiUI/Resources/Styles/Styles.xaml | 405 ++++++++++++++++++ MyFirstMauiApp/MauiUI/SharedResources.cs | 14 + MyFirstMauiApp/MyFirstMauiApp.sln | 10 +- 37 files changed, 1100 insertions(+), 1 deletion(-) create mode 100644 MyFirstMauiApp/.vscode/launch.json create mode 100644 MyFirstMauiApp/MauiUI/App.xaml create mode 100644 MyFirstMauiApp/MauiUI/App.xaml.cs create mode 100644 MyFirstMauiApp/MauiUI/AppShell.xaml create mode 100644 MyFirstMauiApp/MauiUI/AppShell.xaml.cs create mode 100644 MyFirstMauiApp/MauiUI/MainPage.xaml create mode 100644 MyFirstMauiApp/MauiUI/MainPage.xaml.cs create mode 100644 MyFirstMauiApp/MauiUI/MauiProgram.cs create mode 100644 MyFirstMauiApp/MauiUI/MauiUI.csproj create mode 100644 MyFirstMauiApp/MauiUI/Platforms/Android/AndroidManifest.xml create mode 100644 MyFirstMauiApp/MauiUI/Platforms/Android/MainActivity.cs create mode 100644 MyFirstMauiApp/MauiUI/Platforms/Android/MainApplication.cs create mode 100644 MyFirstMauiApp/MauiUI/Platforms/Android/Resources/values/colors.xml create mode 100644 MyFirstMauiApp/MauiUI/Platforms/MacCatalyst/AppDelegate.cs create mode 100644 MyFirstMauiApp/MauiUI/Platforms/MacCatalyst/Info.plist create mode 100644 MyFirstMauiApp/MauiUI/Platforms/MacCatalyst/Program.cs create mode 100644 MyFirstMauiApp/MauiUI/Platforms/Tizen/Main.cs create mode 100644 MyFirstMauiApp/MauiUI/Platforms/Tizen/tizen-manifest.xml create mode 100644 MyFirstMauiApp/MauiUI/Platforms/Windows/App.xaml create mode 100644 MyFirstMauiApp/MauiUI/Platforms/Windows/App.xaml.cs create mode 100644 MyFirstMauiApp/MauiUI/Platforms/Windows/Package.appxmanifest create mode 100644 MyFirstMauiApp/MauiUI/Platforms/Windows/app.manifest create mode 100644 MyFirstMauiApp/MauiUI/Platforms/iOS/AppDelegate.cs create mode 100644 MyFirstMauiApp/MauiUI/Platforms/iOS/Info.plist create mode 100644 MyFirstMauiApp/MauiUI/Platforms/iOS/Program.cs create mode 100644 MyFirstMauiApp/MauiUI/Properties/launchSettings.json create mode 100644 MyFirstMauiApp/MauiUI/Resources/AppIcon/appicon.svg create mode 100644 MyFirstMauiApp/MauiUI/Resources/AppIcon/appiconfg.svg create mode 100644 MyFirstMauiApp/MauiUI/Resources/Fonts/OpenSans-Regular.ttf create mode 100644 MyFirstMauiApp/MauiUI/Resources/Fonts/OpenSans-Semibold.ttf create mode 100644 MyFirstMauiApp/MauiUI/Resources/Images/dotnet_bot.svg create mode 100644 MyFirstMauiApp/MauiUI/Resources/Raw/AboutAssets.txt create mode 100644 MyFirstMauiApp/MauiUI/Resources/Splash/splash.svg create mode 100644 MyFirstMauiApp/MauiUI/Resources/Styles/Colors.xaml create mode 100644 MyFirstMauiApp/MauiUI/Resources/Styles/Styles.xaml create mode 100644 MyFirstMauiApp/MauiUI/SharedResources.cs diff --git a/MyFirstMauiApp/.vscode/launch.json b/MyFirstMauiApp/.vscode/launch.json new file mode 100644 index 0000000..a81bd58 --- /dev/null +++ b/MyFirstMauiApp/.vscode/launch.json @@ -0,0 +1,14 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": ".NET MAUI", + "type": "maui", + "request": "launch", + "preLaunchTask": "maui: Build" + } + ] +} \ No newline at end of file diff --git a/MyFirstMauiApp/MauiUI/App.xaml b/MyFirstMauiApp/MauiUI/App.xaml new file mode 100644 index 0000000..526f535 --- /dev/null +++ b/MyFirstMauiApp/MauiUI/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/MyFirstMauiApp/MauiUI/App.xaml.cs b/MyFirstMauiApp/MauiUI/App.xaml.cs new file mode 100644 index 0000000..f7072d4 --- /dev/null +++ b/MyFirstMauiApp/MauiUI/App.xaml.cs @@ -0,0 +1,12 @@ +namespace MauiUI +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } + } +} diff --git a/MyFirstMauiApp/MauiUI/AppShell.xaml b/MyFirstMauiApp/MauiUI/AppShell.xaml new file mode 100644 index 0000000..72fe16f --- /dev/null +++ b/MyFirstMauiApp/MauiUI/AppShell.xaml @@ -0,0 +1,14 @@ + + + + + + diff --git a/MyFirstMauiApp/MauiUI/AppShell.xaml.cs b/MyFirstMauiApp/MauiUI/AppShell.xaml.cs new file mode 100644 index 0000000..8263ca1 --- /dev/null +++ b/MyFirstMauiApp/MauiUI/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace MauiUI +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} diff --git a/MyFirstMauiApp/MauiUI/MainPage.xaml b/MyFirstMauiApp/MauiUI/MainPage.xaml new file mode 100644 index 0000000..e68561a --- /dev/null +++ b/MyFirstMauiApp/MauiUI/MainPage.xaml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + +