From 497e6a7e114d1a11418658ef75526d6425363313 Mon Sep 17 00:00:00 2001 From: syneffort Date: Fri, 12 Apr 2024 11:54:09 +0900 Subject: [PATCH] Note base --- MyFirstMauiApp/MyFirstMauiApp.sln | 10 +- MyFirstMauiApp/NotesNet8/App.xaml | 14 + MyFirstMauiApp/NotesNet8/App.xaml.cs | 12 + MyFirstMauiApp/NotesNet8/AppShell.xaml | 20 + MyFirstMauiApp/NotesNet8/AppShell.xaml.cs | 10 + MyFirstMauiApp/NotesNet8/MainPage.xaml | 36 ++ MyFirstMauiApp/NotesNet8/MainPage.xaml.cs | 25 + MyFirstMauiApp/NotesNet8/MauiProgram.cs | 25 + MyFirstMauiApp/NotesNet8/NotesNet8.csproj | 76 ++++ MyFirstMauiApp/NotesNet8/Pages/AboutPage.xaml | 16 + .../NotesNet8/Pages/AboutPage.xaml.cs | 14 + .../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/Entitlements.plist | 14 + .../Platforms/MacCatalyst/Info.plist | 38 ++ .../Platforms/MacCatalyst/Program.cs | 16 + .../NotesNet8/Platforms/Tizen/Main.cs | 17 + .../Platforms/Tizen/tizen-manifest.xml | 15 + .../NotesNet8/Platforms/Windows/App.xaml | 8 + .../NotesNet8/Platforms/Windows/App.xaml.cs | 25 + .../Platforms/Windows/Package.appxmanifest | 46 ++ .../NotesNet8/Platforms/Windows/app.manifest | 15 + .../NotesNet8/Platforms/iOS/AppDelegate.cs | 10 + .../NotesNet8/Platforms/iOS/Info.plist | 32 ++ .../NotesNet8/Platforms/iOS/Program.cs | 16 + .../NotesNet8/Properties/launchSettings.json | 8 + .../NotesNet8/Resources/AppIcon/appicon.svg | 4 + .../NotesNet8/Resources/AppIcon/appiconfg.svg | 8 + .../Resources/Fonts/OpenSans-Regular.ttf | Bin 0 -> 107184 bytes .../Resources/Fonts/OpenSans-Semibold.ttf | Bin 0 -> 111072 bytes .../NotesNet8/Resources/Images/dotnet_bot.png | Bin 0 -> 69811 bytes .../NotesNet8/Resources/Images/icon_about.png | Bin 0 -> 2019 bytes .../NotesNet8/Resources/Images/icon_notes.png | Bin 0 -> 1400 bytes .../NotesNet8/Resources/Raw/AboutAssets.txt | 15 + .../NotesNet8/Resources/Splash/splash.svg | 8 + .../NotesNet8/Resources/Styles/Colors.xaml | 45 ++ .../NotesNet8/Resources/Styles/Styles.xaml | 426 ++++++++++++++++++ 40 files changed, 1072 insertions(+), 1 deletion(-) create mode 100644 MyFirstMauiApp/NotesNet8/App.xaml create mode 100644 MyFirstMauiApp/NotesNet8/App.xaml.cs create mode 100644 MyFirstMauiApp/NotesNet8/AppShell.xaml create mode 100644 MyFirstMauiApp/NotesNet8/AppShell.xaml.cs create mode 100644 MyFirstMauiApp/NotesNet8/MainPage.xaml create mode 100644 MyFirstMauiApp/NotesNet8/MainPage.xaml.cs create mode 100644 MyFirstMauiApp/NotesNet8/MauiProgram.cs create mode 100644 MyFirstMauiApp/NotesNet8/NotesNet8.csproj create mode 100644 MyFirstMauiApp/NotesNet8/Pages/AboutPage.xaml create mode 100644 MyFirstMauiApp/NotesNet8/Pages/AboutPage.xaml.cs create mode 100644 MyFirstMauiApp/NotesNet8/Platforms/Android/AndroidManifest.xml create mode 100644 MyFirstMauiApp/NotesNet8/Platforms/Android/MainActivity.cs create mode 100644 MyFirstMauiApp/NotesNet8/Platforms/Android/MainApplication.cs create mode 100644 MyFirstMauiApp/NotesNet8/Platforms/Android/Resources/values/colors.xml create mode 100644 MyFirstMauiApp/NotesNet8/Platforms/MacCatalyst/AppDelegate.cs create mode 100644 MyFirstMauiApp/NotesNet8/Platforms/MacCatalyst/Entitlements.plist create mode 100644 MyFirstMauiApp/NotesNet8/Platforms/MacCatalyst/Info.plist create mode 100644 MyFirstMauiApp/NotesNet8/Platforms/MacCatalyst/Program.cs create mode 100644 MyFirstMauiApp/NotesNet8/Platforms/Tizen/Main.cs create mode 100644 MyFirstMauiApp/NotesNet8/Platforms/Tizen/tizen-manifest.xml create mode 100644 MyFirstMauiApp/NotesNet8/Platforms/Windows/App.xaml create mode 100644 MyFirstMauiApp/NotesNet8/Platforms/Windows/App.xaml.cs create mode 100644 MyFirstMauiApp/NotesNet8/Platforms/Windows/Package.appxmanifest create mode 100644 MyFirstMauiApp/NotesNet8/Platforms/Windows/app.manifest create mode 100644 MyFirstMauiApp/NotesNet8/Platforms/iOS/AppDelegate.cs create mode 100644 MyFirstMauiApp/NotesNet8/Platforms/iOS/Info.plist create mode 100644 MyFirstMauiApp/NotesNet8/Platforms/iOS/Program.cs create mode 100644 MyFirstMauiApp/NotesNet8/Properties/launchSettings.json create mode 100644 MyFirstMauiApp/NotesNet8/Resources/AppIcon/appicon.svg create mode 100644 MyFirstMauiApp/NotesNet8/Resources/AppIcon/appiconfg.svg create mode 100644 MyFirstMauiApp/NotesNet8/Resources/Fonts/OpenSans-Regular.ttf create mode 100644 MyFirstMauiApp/NotesNet8/Resources/Fonts/OpenSans-Semibold.ttf create mode 100644 MyFirstMauiApp/NotesNet8/Resources/Images/dotnet_bot.png create mode 100644 MyFirstMauiApp/NotesNet8/Resources/Images/icon_about.png create mode 100644 MyFirstMauiApp/NotesNet8/Resources/Images/icon_notes.png create mode 100644 MyFirstMauiApp/NotesNet8/Resources/Raw/AboutAssets.txt create mode 100644 MyFirstMauiApp/NotesNet8/Resources/Splash/splash.svg create mode 100644 MyFirstMauiApp/NotesNet8/Resources/Styles/Colors.xaml create mode 100644 MyFirstMauiApp/NotesNet8/Resources/Styles/Styles.xaml diff --git a/MyFirstMauiApp/MyFirstMauiApp.sln b/MyFirstMauiApp/MyFirstMauiApp.sln index e4122c3..19f0713 100644 --- a/MyFirstMauiApp/MyFirstMauiApp.sln +++ b/MyFirstMauiApp/MyFirstMauiApp.sln @@ -19,7 +19,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LocalDataStorageWithSQLite" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorHybridWithMAUI", "BlazorHybridWithMAUI\BlazorHybridWithMAUI.csproj", "{D1B193FE-7F85-4709-BAB7-3E8B7110CF3E}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WeatherClient", "WeatherClient\WeatherClient.csproj", "{CD7D204D-468C-4930-AFA1-9BD1DCE8E31C}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WeatherClient", "WeatherClient\WeatherClient.csproj", "{CD7D204D-468C-4930-AFA1-9BD1DCE8E31C}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NotesNet8", "NotesNet8\NotesNet8.csproj", "{066105D3-EEF7-432F-B784-8753A1BE3D92}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -81,6 +83,12 @@ Global {CD7D204D-468C-4930-AFA1-9BD1DCE8E31C}.Release|Any CPU.ActiveCfg = Release|Any CPU {CD7D204D-468C-4930-AFA1-9BD1DCE8E31C}.Release|Any CPU.Build.0 = Release|Any CPU {CD7D204D-468C-4930-AFA1-9BD1DCE8E31C}.Release|Any CPU.Deploy.0 = Release|Any CPU + {066105D3-EEF7-432F-B784-8753A1BE3D92}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {066105D3-EEF7-432F-B784-8753A1BE3D92}.Debug|Any CPU.Build.0 = Debug|Any CPU + {066105D3-EEF7-432F-B784-8753A1BE3D92}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {066105D3-EEF7-432F-B784-8753A1BE3D92}.Release|Any CPU.ActiveCfg = Release|Any CPU + {066105D3-EEF7-432F-B784-8753A1BE3D92}.Release|Any CPU.Build.0 = Release|Any CPU + {066105D3-EEF7-432F-B784-8753A1BE3D92}.Release|Any CPU.Deploy.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/MyFirstMauiApp/NotesNet8/App.xaml b/MyFirstMauiApp/NotesNet8/App.xaml new file mode 100644 index 0000000..13aad65 --- /dev/null +++ b/MyFirstMauiApp/NotesNet8/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/MyFirstMauiApp/NotesNet8/App.xaml.cs b/MyFirstMauiApp/NotesNet8/App.xaml.cs new file mode 100644 index 0000000..e51b13e --- /dev/null +++ b/MyFirstMauiApp/NotesNet8/App.xaml.cs @@ -0,0 +1,12 @@ +namespace NotesNet8 +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } + } +} diff --git a/MyFirstMauiApp/NotesNet8/AppShell.xaml b/MyFirstMauiApp/NotesNet8/AppShell.xaml new file mode 100644 index 0000000..b4a9829 --- /dev/null +++ b/MyFirstMauiApp/NotesNet8/AppShell.xaml @@ -0,0 +1,20 @@ + + + + + + + + + + diff --git a/MyFirstMauiApp/NotesNet8/AppShell.xaml.cs b/MyFirstMauiApp/NotesNet8/AppShell.xaml.cs new file mode 100644 index 0000000..4d4d359 --- /dev/null +++ b/MyFirstMauiApp/NotesNet8/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace NotesNet8 +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} diff --git a/MyFirstMauiApp/NotesNet8/MainPage.xaml b/MyFirstMauiApp/NotesNet8/MainPage.xaml new file mode 100644 index 0000000..8b44ae1 --- /dev/null +++ b/MyFirstMauiApp/NotesNet8/MainPage.xaml @@ -0,0 +1,36 @@ + + + + + + + +