diff --git a/MyFirstMauiApp/MyFirstMauiApp.sln b/MyFirstMauiApp/MyFirstMauiApp.sln new file mode 100644 index 0000000..295bff2 --- /dev/null +++ b/MyFirstMauiApp/MyFirstMauiApp.sln @@ -0,0 +1,27 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.8.34511.84 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Phoneword", "Phoneword\Phoneword.csproj", "{B3546A62-5BF5-4659-A76C-626F5781CDA4}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {B3546A62-5BF5-4659-A76C-626F5781CDA4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B3546A62-5BF5-4659-A76C-626F5781CDA4}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B3546A62-5BF5-4659-A76C-626F5781CDA4}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {B3546A62-5BF5-4659-A76C-626F5781CDA4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B3546A62-5BF5-4659-A76C-626F5781CDA4}.Release|Any CPU.Build.0 = Release|Any CPU + {B3546A62-5BF5-4659-A76C-626F5781CDA4}.Release|Any CPU.Deploy.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {34F9DB89-BB6B-44B4-AD3D-1BEC6A927C1E} + EndGlobalSection +EndGlobal diff --git a/MyFirstMauiApp/Phoneword/App.xaml b/MyFirstMauiApp/Phoneword/App.xaml new file mode 100644 index 0000000..64213f7 --- /dev/null +++ b/MyFirstMauiApp/Phoneword/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/MyFirstMauiApp/Phoneword/App.xaml.cs b/MyFirstMauiApp/Phoneword/App.xaml.cs new file mode 100644 index 0000000..3abd634 --- /dev/null +++ b/MyFirstMauiApp/Phoneword/App.xaml.cs @@ -0,0 +1,12 @@ +namespace Phoneword +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } + } +} diff --git a/MyFirstMauiApp/Phoneword/AppShell.xaml b/MyFirstMauiApp/Phoneword/AppShell.xaml new file mode 100644 index 0000000..cea77a7 --- /dev/null +++ b/MyFirstMauiApp/Phoneword/AppShell.xaml @@ -0,0 +1,14 @@ + + + + + + diff --git a/MyFirstMauiApp/Phoneword/AppShell.xaml.cs b/MyFirstMauiApp/Phoneword/AppShell.xaml.cs new file mode 100644 index 0000000..a8e5031 --- /dev/null +++ b/MyFirstMauiApp/Phoneword/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace Phoneword +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} diff --git a/MyFirstMauiApp/Phoneword/MainPage.xaml b/MyFirstMauiApp/Phoneword/MainPage.xaml new file mode 100644 index 0000000..fff6c97 --- /dev/null +++ b/MyFirstMauiApp/Phoneword/MainPage.xaml @@ -0,0 +1,20 @@ + + + + +