commit de23b1a8638459b0d41ac6729648cfebd220ef19 Author: Enzo Date: Wed Sep 6 13:46:31 2023 +0200 first commit diff --git a/MVVM/MVVM.sln b/MVVM/MVVM.sln new file mode 100644 index 00000000..feccacbe --- /dev/null +++ b/MVVM/MVVM.sln @@ -0,0 +1,27 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.7.34024.191 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MVVM", "MVVM\MVVM.csproj", "{9CCD9FC8-B73D-44A3-B131-F8527A9F9878}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9CCD9FC8-B73D-44A3-B131-F8527A9F9878}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9CCD9FC8-B73D-44A3-B131-F8527A9F9878}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9CCD9FC8-B73D-44A3-B131-F8527A9F9878}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {9CCD9FC8-B73D-44A3-B131-F8527A9F9878}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9CCD9FC8-B73D-44A3-B131-F8527A9F9878}.Release|Any CPU.Build.0 = Release|Any CPU + {9CCD9FC8-B73D-44A3-B131-F8527A9F9878}.Release|Any CPU.Deploy.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {BF62A8BD-55BA-4E17-92BB-8CE58C482FBF} + EndGlobalSection +EndGlobal diff --git a/MVVM/MVVM/App.xaml b/MVVM/MVVM/App.xaml new file mode 100644 index 00000000..4f2426f7 --- /dev/null +++ b/MVVM/MVVM/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/MVVM/MVVM/App.xaml.cs b/MVVM/MVVM/App.xaml.cs new file mode 100644 index 00000000..453eee2d --- /dev/null +++ b/MVVM/MVVM/App.xaml.cs @@ -0,0 +1,12 @@ +namespace MVVM +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } + } +} \ No newline at end of file diff --git a/MVVM/MVVM/AppShell.xaml b/MVVM/MVVM/AppShell.xaml new file mode 100644 index 00000000..e18ae762 --- /dev/null +++ b/MVVM/MVVM/AppShell.xaml @@ -0,0 +1,14 @@ + + + + + + diff --git a/MVVM/MVVM/AppShell.xaml.cs b/MVVM/MVVM/AppShell.xaml.cs new file mode 100644 index 00000000..461f995c --- /dev/null +++ b/MVVM/MVVM/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace MVVM +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/MVVM/MVVM/MVVM.csproj b/MVVM/MVVM/MVVM.csproj new file mode 100644 index 00000000..6c8bffa6 --- /dev/null +++ b/MVVM/MVVM/MVVM.csproj @@ -0,0 +1,55 @@ + + + + net7.0-android;net7.0-ios;net7.0-maccatalyst + $(TargetFrameworks);net7.0-windows10.0.19041.0 + + + Exe + MVVM + true + true + enable + + + MVVM + + + com.companyname.mvvm + b95213ae-28ea-4274-b456-c77fe8e8c511 + + + 1.0 + 1 + + 11.0 + 13.1 + 21.0 + 10.0.17763.0 + 10.0.17763.0 + 6.5 + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/MVVM/MVVM/MVVM.csproj.user b/MVVM/MVVM/MVVM.csproj.user new file mode 100644 index 00000000..b7c6a209 --- /dev/null +++ b/MVVM/MVVM/MVVM.csproj.user @@ -0,0 +1,33 @@ + + + + False + net7.0-windows10.0.19041.0 + Windows Machine + + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + + + Designer + + + \ No newline at end of file diff --git a/MVVM/MVVM/MainPage.xaml b/MVVM/MVVM/MainPage.xaml new file mode 100644 index 00000000..20fd074b --- /dev/null +++ b/MVVM/MVVM/MainPage.xaml @@ -0,0 +1,41 @@ + + + + + + + + +