diff --git a/Rebound.EventViewer/App.xaml b/Rebound.EventViewer/App.xaml new file mode 100644 index 0000000..f9d3039 --- /dev/null +++ b/Rebound.EventViewer/App.xaml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/Rebound.EventViewer/App.xaml.cs b/Rebound.EventViewer/App.xaml.cs new file mode 100644 index 0000000..7acd323 --- /dev/null +++ b/Rebound.EventViewer/App.xaml.cs @@ -0,0 +1,48 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Runtime.InteropServices.WindowsRuntime; +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 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 Rebound.EventViewer; +/// +/// 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/Rebound.EventViewer/Assets/LockScreenLogo.scale-200.png b/Rebound.EventViewer/Assets/LockScreenLogo.scale-200.png new file mode 100644 index 0000000..7440f0d Binary files /dev/null and b/Rebound.EventViewer/Assets/LockScreenLogo.scale-200.png differ diff --git a/Rebound.EventViewer/Assets/SplashScreen.scale-200.png b/Rebound.EventViewer/Assets/SplashScreen.scale-200.png new file mode 100644 index 0000000..32f486a Binary files /dev/null and b/Rebound.EventViewer/Assets/SplashScreen.scale-200.png differ diff --git a/Rebound.EventViewer/Assets/Square150x150Logo.scale-200.png b/Rebound.EventViewer/Assets/Square150x150Logo.scale-200.png new file mode 100644 index 0000000..53ee377 Binary files /dev/null and b/Rebound.EventViewer/Assets/Square150x150Logo.scale-200.png differ diff --git a/Rebound.EventViewer/Assets/Square44x44Logo.scale-200.png b/Rebound.EventViewer/Assets/Square44x44Logo.scale-200.png new file mode 100644 index 0000000..f713bba Binary files /dev/null and b/Rebound.EventViewer/Assets/Square44x44Logo.scale-200.png differ diff --git a/Rebound.EventViewer/Assets/Square44x44Logo.targetsize-24_altform-unplated.png b/Rebound.EventViewer/Assets/Square44x44Logo.targetsize-24_altform-unplated.png new file mode 100644 index 0000000..dc9f5be Binary files /dev/null and b/Rebound.EventViewer/Assets/Square44x44Logo.targetsize-24_altform-unplated.png differ diff --git a/Rebound.EventViewer/Assets/StoreLogo.png b/Rebound.EventViewer/Assets/StoreLogo.png new file mode 100644 index 0000000..a4586f2 Binary files /dev/null and b/Rebound.EventViewer/Assets/StoreLogo.png differ diff --git a/Rebound.EventViewer/Assets/Wide310x150Logo.scale-200.png b/Rebound.EventViewer/Assets/Wide310x150Logo.scale-200.png new file mode 100644 index 0000000..8b4a5d0 Binary files /dev/null and b/Rebound.EventViewer/Assets/Wide310x150Logo.scale-200.png differ diff --git a/Rebound.EventViewer/MainWindow.xaml b/Rebound.EventViewer/MainWindow.xaml new file mode 100644 index 0000000..b849241 --- /dev/null +++ b/Rebound.EventViewer/MainWindow.xaml @@ -0,0 +1,14 @@ + + + + + + + diff --git a/Rebound.EventViewer/MainWindow.xaml.cs b/Rebound.EventViewer/MainWindow.xaml.cs new file mode 100644 index 0000000..65fe4f3 --- /dev/null +++ b/Rebound.EventViewer/MainWindow.xaml.cs @@ -0,0 +1,34 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Runtime.InteropServices.WindowsRuntime; +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 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 Rebound.EventViewer; +/// +/// An empty window that can be used on its own or navigated to within a Frame. +/// +public sealed partial class MainWindow : Window +{ + public MainWindow() + { + this.InitializeComponent(); + } + + private void myButton_Click(object sender, RoutedEventArgs e) + { + myButton.Content = "Clicked"; + } +} diff --git a/Rebound.EventViewer/Package.appxmanifest b/Rebound.EventViewer/Package.appxmanifest new file mode 100644 index 0000000..ef3e11e --- /dev/null +++ b/Rebound.EventViewer/Package.appxmanifest @@ -0,0 +1,51 @@ + + + + + + + + + + Rebound.EventViewer + JPJM- + Assets\StoreLogo.png + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Rebound.EventViewer/Properties/launchSettings.json b/Rebound.EventViewer/Properties/launchSettings.json new file mode 100644 index 0000000..31bef0c --- /dev/null +++ b/Rebound.EventViewer/Properties/launchSettings.json @@ -0,0 +1,10 @@ +{ + "profiles": { + "Rebound.EventViewer (Package)": { + "commandName": "MsixPackage" + }, + "Rebound.EventViewer (Unpackaged)": { + "commandName": "Project" + } + } +} \ No newline at end of file diff --git a/Rebound.EventViewer/Rebound.EventViewer.csproj b/Rebound.EventViewer/Rebound.EventViewer.csproj new file mode 100644 index 0000000..54f6b6b --- /dev/null +++ b/Rebound.EventViewer/Rebound.EventViewer.csproj @@ -0,0 +1,49 @@ + + + WinExe + net8.0-windows10.0.19041.0 + 10.0.17763.0 + Rebound.EventViewer + app.manifest + x86;x64;ARM64 + win-x86;win-x64;win-arm64 + win10-x86;win10-x64;win10-arm64 + win-$(Platform).pubxml + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + true + + \ No newline at end of file diff --git a/Rebound.EventViewer/app.manifest b/Rebound.EventViewer/app.manifest new file mode 100644 index 0000000..8a7df03 --- /dev/null +++ b/Rebound.EventViewer/app.manifest @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + PerMonitorV2 + + + \ No newline at end of file diff --git a/Rebound.sln b/Rebound.sln index eccfa1c..289b8cf 100644 --- a/Rebound.sln +++ b/Rebound.sln @@ -25,9 +25,11 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Rebound.ExplorerPhotoPrinti EndProject Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Rebound.Delivery", "Delivery\Rebound.Delivery.shproj", "{B6C8C1F3-644E-475F-84C6-214243620014}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Rebound.Control", "Control\Rebound.Control.csproj", "{8920EBF9-A483-4A5F-9BB3-AA2E3D8F1269}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Rebound.Control", "Control\Rebound.Control.csproj", "{8920EBF9-A483-4A5F-9BB3-AA2E3D8F1269}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Rebound.Installer", "Installer\Rebound.Installer.csproj", "{0158E7F4-9955-43F7-8978-DC69FD7CCD60}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Rebound.Installer", "Installer\Rebound.Installer.csproj", "{0158E7F4-9955-43F7-8978-DC69FD7CCD60}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Rebound.EventViewer", "Rebound.EventViewer\Rebound.EventViewer.csproj", "{36AF765E-1361-4772-A6CB-C990B3464C1A}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -313,6 +315,30 @@ Global {0158E7F4-9955-43F7-8978-DC69FD7CCD60}.Release|x64.Build.0 = Release|x64 {0158E7F4-9955-43F7-8978-DC69FD7CCD60}.Release|x86.ActiveCfg = Release|x86 {0158E7F4-9955-43F7-8978-DC69FD7CCD60}.Release|x86.Build.0 = Release|x86 + {36AF765E-1361-4772-A6CB-C990B3464C1A}.Debug|Any CPU.ActiveCfg = Debug|x64 + {36AF765E-1361-4772-A6CB-C990B3464C1A}.Debug|Any CPU.Build.0 = Debug|x64 + {36AF765E-1361-4772-A6CB-C990B3464C1A}.Debug|Any CPU.Deploy.0 = Debug|x64 + {36AF765E-1361-4772-A6CB-C990B3464C1A}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {36AF765E-1361-4772-A6CB-C990B3464C1A}.Debug|ARM64.Build.0 = Debug|ARM64 + {36AF765E-1361-4772-A6CB-C990B3464C1A}.Debug|ARM64.Deploy.0 = Debug|ARM64 + {36AF765E-1361-4772-A6CB-C990B3464C1A}.Debug|x64.ActiveCfg = Debug|x64 + {36AF765E-1361-4772-A6CB-C990B3464C1A}.Debug|x64.Build.0 = Debug|x64 + {36AF765E-1361-4772-A6CB-C990B3464C1A}.Debug|x64.Deploy.0 = Debug|x64 + {36AF765E-1361-4772-A6CB-C990B3464C1A}.Debug|x86.ActiveCfg = Debug|x86 + {36AF765E-1361-4772-A6CB-C990B3464C1A}.Debug|x86.Build.0 = Debug|x86 + {36AF765E-1361-4772-A6CB-C990B3464C1A}.Debug|x86.Deploy.0 = Debug|x86 + {36AF765E-1361-4772-A6CB-C990B3464C1A}.Release|Any CPU.ActiveCfg = Release|x64 + {36AF765E-1361-4772-A6CB-C990B3464C1A}.Release|Any CPU.Build.0 = Release|x64 + {36AF765E-1361-4772-A6CB-C990B3464C1A}.Release|Any CPU.Deploy.0 = Release|x64 + {36AF765E-1361-4772-A6CB-C990B3464C1A}.Release|ARM64.ActiveCfg = Release|ARM64 + {36AF765E-1361-4772-A6CB-C990B3464C1A}.Release|ARM64.Build.0 = Release|ARM64 + {36AF765E-1361-4772-A6CB-C990B3464C1A}.Release|ARM64.Deploy.0 = Release|ARM64 + {36AF765E-1361-4772-A6CB-C990B3464C1A}.Release|x64.ActiveCfg = Release|x64 + {36AF765E-1361-4772-A6CB-C990B3464C1A}.Release|x64.Build.0 = Release|x64 + {36AF765E-1361-4772-A6CB-C990B3464C1A}.Release|x64.Deploy.0 = Release|x64 + {36AF765E-1361-4772-A6CB-C990B3464C1A}.Release|x86.ActiveCfg = Release|x86 + {36AF765E-1361-4772-A6CB-C990B3464C1A}.Release|x86.Build.0 = Release|x86 + {36AF765E-1361-4772-A6CB-C990B3464C1A}.Release|x86.Deploy.0 = Release|x86 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE