From 63589726bb523bd5b895f97827acc4a2dc15236a Mon Sep 17 00:00:00 2001 From: Vlad Torop Date: Thu, 27 Feb 2025 15:32:14 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=BD=D0=BE=D0=B2=D1=83=D1=8E=20=D1=81=D1=82=D1=80=D0=B0=D0=BD?= =?UTF-8?q?=D0=B8=D1=87=D0=BA=D1=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- MobailApp.csproj | 6 ++++++ MobailApp.csproj.user | 5 +++++ NewPage1.xaml | 12 ++++++++++++ NewPage1.xaml.cs | 9 +++++++++ 4 files changed, 32 insertions(+) create mode 100644 NewPage1.xaml create mode 100644 NewPage1.xaml.cs diff --git a/MobailApp.csproj b/MobailApp.csproj index 04a027a..a6970aa 100644 --- a/MobailApp.csproj +++ b/MobailApp.csproj @@ -62,4 +62,10 @@ + + + MSBuild:Compile + + + diff --git a/MobailApp.csproj.user b/MobailApp.csproj.user index 891593c..64111f6 100644 --- a/MobailApp.csproj.user +++ b/MobailApp.csproj.user @@ -6,6 +6,11 @@ Windows Machine + + Designer + + + Designer diff --git a/NewPage1.xaml b/NewPage1.xaml new file mode 100644 index 0000000..51760a3 --- /dev/null +++ b/NewPage1.xaml @@ -0,0 +1,12 @@ + + + + + \ No newline at end of file diff --git a/NewPage1.xaml.cs b/NewPage1.xaml.cs new file mode 100644 index 0000000..f78e1e0 --- /dev/null +++ b/NewPage1.xaml.cs @@ -0,0 +1,9 @@ +namespace MobailApp; + +public partial class NewPage1 : ContentPage +{ + public NewPage1() + { + InitializeComponent(); + } +} \ No newline at end of file