diff --git a/WguApp/.gitignore b/WguApp/.gitignore new file mode 100644 index 0000000..1349347 --- /dev/null +++ b/WguApp/.gitignore @@ -0,0 +1,3 @@ +bin/ +obj/ +.idea/ \ No newline at end of file diff --git a/WguApp/.noai b/WguApp/.noai new file mode 100644 index 0000000..e69de29 diff --git a/WguApp/App.xaml b/WguApp/App.xaml new file mode 100644 index 0000000..c9c032c --- /dev/null +++ b/WguApp/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/WguApp/App.xaml.cs b/WguApp/App.xaml.cs new file mode 100644 index 0000000..19970ac --- /dev/null +++ b/WguApp/App.xaml.cs @@ -0,0 +1,14 @@ +namespace WguApp; + +public partial class App : Application +{ + public App() + { + InitializeComponent(); + } + + protected override Window CreateWindow(IActivationState? activationState) + { + return new Window(new AppShell()); + } +} \ No newline at end of file diff --git a/WguApp/AppShell.xaml b/WguApp/AppShell.xaml new file mode 100644 index 0000000..64baa83 --- /dev/null +++ b/WguApp/AppShell.xaml @@ -0,0 +1,14 @@ + + + + + + diff --git a/WguApp/AppShell.xaml.cs b/WguApp/AppShell.xaml.cs new file mode 100644 index 0000000..63aba5d --- /dev/null +++ b/WguApp/AppShell.xaml.cs @@ -0,0 +1,9 @@ +namespace WguApp; + +public partial class AppShell : Shell +{ + public AppShell() + { + InitializeComponent(); + } +} \ No newline at end of file diff --git a/WguApp/GlobalXmlns.cs b/WguApp/GlobalXmlns.cs new file mode 100644 index 0000000..6e8ad19 --- /dev/null +++ b/WguApp/GlobalXmlns.cs @@ -0,0 +1,2 @@ +[assembly: XmlnsDefinition("http://schemas.microsoft.com/dotnet/maui/global", "WguApp")] +[assembly: XmlnsDefinition("http://schemas.microsoft.com/dotnet/maui/global", "WguApp.Pages")] \ No newline at end of file diff --git a/WguApp/MainPage.xaml b/WguApp/MainPage.xaml new file mode 100644 index 0000000..17f1c76 --- /dev/null +++ b/WguApp/MainPage.xaml @@ -0,0 +1,36 @@ + + + + + + + +