diff --git a/App1/App.xaml b/App1/App.xaml new file mode 100644 index 0000000..19bdc24 --- /dev/null +++ b/App1/App.xaml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/App1/App.xaml.cs b/App1/App.xaml.cs new file mode 100644 index 0000000..d6c3cb3 --- /dev/null +++ b/App1/App.xaml.cs @@ -0,0 +1,50 @@ +using Microsoft.UI.Xaml; +using Microsoft.UI.Xaml.Controls; +using Microsoft.UI.Xaml.Controls.Primitives; +using Microsoft.UI.Xaml.Data; +using Microsoft.UI.Xaml.Input; +using Microsoft.UI.Xaml.Media; +using Microsoft.UI.Xaml.Navigation; +using Microsoft.UI.Xaml.Shapes; +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Runtime.InteropServices.WindowsRuntime; +using Windows.ApplicationModel; +using Windows.ApplicationModel.Activation; +using Windows.Foundation; +using Windows.Foundation.Collections; + +// To learn more about WinUI, the WinUI project structure, +// and more about our project templates, see: http://aka.ms/winui-project-info. + +namespace App1 +{ + /// + /// Provides application-specific behavior to supplement the default Application class. + /// + public partial class App : Application + { + /// + /// Initializes the singleton application object. This is the first line of authored code + /// executed, and as such is the logical equivalent of main() or WinMain(). + /// + public App() + { + this.InitializeComponent(); + } + + /// + /// Invoked when the application is launched. + /// + /// Details about the launch request and process. + protected override void OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs args) + { + m_window = new MainWindow(); + m_window.Activate(); + } + + private Window m_window; + } +} diff --git a/App1/App1.csproj b/App1/App1.csproj new file mode 100644 index 0000000..1f61254 --- /dev/null +++ b/App1/App1.csproj @@ -0,0 +1,48 @@ + + + WinExe + net6.0-windows10.0.19041.0 + 10.0.17763.0 + App1 + app.manifest + x86;x64;ARM64 + win10-x86;win10-x64;win10-arm64 + win10-$(Platform).pubxml + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + true + + diff --git a/App1/Assets/LockScreenLogo.scale-200.png b/App1/Assets/LockScreenLogo.scale-200.png new file mode 100644 index 0000000..7440f0d Binary files /dev/null and b/App1/Assets/LockScreenLogo.scale-200.png differ diff --git a/App1/Assets/SplashScreen.scale-200.png b/App1/Assets/SplashScreen.scale-200.png new file mode 100644 index 0000000..32f486a Binary files /dev/null and b/App1/Assets/SplashScreen.scale-200.png differ diff --git a/App1/Assets/Square150x150Logo.scale-200.png b/App1/Assets/Square150x150Logo.scale-200.png new file mode 100644 index 0000000..53ee377 Binary files /dev/null and b/App1/Assets/Square150x150Logo.scale-200.png differ diff --git a/App1/Assets/Square44x44Logo.scale-200.png b/App1/Assets/Square44x44Logo.scale-200.png new file mode 100644 index 0000000..f713bba Binary files /dev/null and b/App1/Assets/Square44x44Logo.scale-200.png differ diff --git a/App1/Assets/Square44x44Logo.targetsize-24_altform-unplated.png b/App1/Assets/Square44x44Logo.targetsize-24_altform-unplated.png new file mode 100644 index 0000000..dc9f5be Binary files /dev/null and b/App1/Assets/Square44x44Logo.targetsize-24_altform-unplated.png differ diff --git a/App1/Assets/StoreLogo.png b/App1/Assets/StoreLogo.png new file mode 100644 index 0000000..a4586f2 Binary files /dev/null and b/App1/Assets/StoreLogo.png differ diff --git a/App1/Assets/Wide310x150Logo.scale-200.png b/App1/Assets/Wide310x150Logo.scale-200.png new file mode 100644 index 0000000..8b4a5d0 Binary files /dev/null and b/App1/Assets/Wide310x150Logo.scale-200.png differ diff --git a/App1/MainWindow.xaml b/App1/MainWindow.xaml new file mode 100644 index 0000000..99d9cf1 --- /dev/null +++ b/App1/MainWindow.xaml @@ -0,0 +1,43 @@ + + + + + + + +