diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP.sln b/src/EyesAndEars.UWP/EyesAndEars.UWP.sln new file mode 100644 index 0000000..8c0141f --- /dev/null +++ b/src/EyesAndEars.UWP/EyesAndEars.UWP.sln @@ -0,0 +1,51 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29709.97 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EyesAndEars.UWP", "EyesAndEars.UWP\EyesAndEars.UWP.csproj", "{0AEFB351-EA4D-4ED1-998A-AB0B0792E06B}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM = Debug|ARM + Debug|ARM64 = Debug|ARM64 + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|ARM = Release|ARM + Release|ARM64 = Release|ARM64 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {0AEFB351-EA4D-4ED1-998A-AB0B0792E06B}.Debug|ARM.ActiveCfg = Debug|ARM + {0AEFB351-EA4D-4ED1-998A-AB0B0792E06B}.Debug|ARM.Build.0 = Debug|ARM + {0AEFB351-EA4D-4ED1-998A-AB0B0792E06B}.Debug|ARM.Deploy.0 = Debug|ARM + {0AEFB351-EA4D-4ED1-998A-AB0B0792E06B}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {0AEFB351-EA4D-4ED1-998A-AB0B0792E06B}.Debug|ARM64.Build.0 = Debug|ARM64 + {0AEFB351-EA4D-4ED1-998A-AB0B0792E06B}.Debug|ARM64.Deploy.0 = Debug|ARM64 + {0AEFB351-EA4D-4ED1-998A-AB0B0792E06B}.Debug|x64.ActiveCfg = Debug|x64 + {0AEFB351-EA4D-4ED1-998A-AB0B0792E06B}.Debug|x64.Build.0 = Debug|x64 + {0AEFB351-EA4D-4ED1-998A-AB0B0792E06B}.Debug|x64.Deploy.0 = Debug|x64 + {0AEFB351-EA4D-4ED1-998A-AB0B0792E06B}.Debug|x86.ActiveCfg = Debug|x86 + {0AEFB351-EA4D-4ED1-998A-AB0B0792E06B}.Debug|x86.Build.0 = Debug|x86 + {0AEFB351-EA4D-4ED1-998A-AB0B0792E06B}.Debug|x86.Deploy.0 = Debug|x86 + {0AEFB351-EA4D-4ED1-998A-AB0B0792E06B}.Release|ARM.ActiveCfg = Release|ARM + {0AEFB351-EA4D-4ED1-998A-AB0B0792E06B}.Release|ARM.Build.0 = Release|ARM + {0AEFB351-EA4D-4ED1-998A-AB0B0792E06B}.Release|ARM.Deploy.0 = Release|ARM + {0AEFB351-EA4D-4ED1-998A-AB0B0792E06B}.Release|ARM64.ActiveCfg = Release|ARM64 + {0AEFB351-EA4D-4ED1-998A-AB0B0792E06B}.Release|ARM64.Build.0 = Release|ARM64 + {0AEFB351-EA4D-4ED1-998A-AB0B0792E06B}.Release|ARM64.Deploy.0 = Release|ARM64 + {0AEFB351-EA4D-4ED1-998A-AB0B0792E06B}.Release|x64.ActiveCfg = Release|x64 + {0AEFB351-EA4D-4ED1-998A-AB0B0792E06B}.Release|x64.Build.0 = Release|x64 + {0AEFB351-EA4D-4ED1-998A-AB0B0792E06B}.Release|x64.Deploy.0 = Release|x64 + {0AEFB351-EA4D-4ED1-998A-AB0B0792E06B}.Release|x86.ActiveCfg = Release|x86 + {0AEFB351-EA4D-4ED1-998A-AB0B0792E06B}.Release|x86.Build.0 = Release|x86 + {0AEFB351-EA4D-4ED1-998A-AB0B0792E06B}.Release|x86.Deploy.0 = Release|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {F3E6EBEC-0578-466F-9C2A-A9475D9811A7} + EndGlobalSection +EndGlobal diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/App.xaml b/src/EyesAndEars.UWP/EyesAndEars.UWP/App.xaml new file mode 100644 index 0000000..08db584 --- /dev/null +++ b/src/EyesAndEars.UWP/EyesAndEars.UWP/App.xaml @@ -0,0 +1,7 @@ + + + diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/App.xaml.cs b/src/EyesAndEars.UWP/EyesAndEars.UWP/App.xaml.cs new file mode 100644 index 0000000..f4679cc --- /dev/null +++ b/src/EyesAndEars.UWP/EyesAndEars.UWP/App.xaml.cs @@ -0,0 +1,80 @@ +using System; +using Windows.ApplicationModel; +using Windows.ApplicationModel.Activation; +using Windows.UI.Xaml; +using Windows.UI.Xaml.Controls; +using Windows.UI.Xaml.Navigation; + +namespace EyesAndEars.UWP { + /// + /// Provides application-specific behavior to supplement the default Application class. + /// + sealed 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(); + this.Suspending += OnSuspending; + } + + /// + /// Invoked when the application is launched normally by the end user. Other entry points + /// will be used such as when the application is launched to open a specific file. + /// + /// Details about the launch request and process. + protected override void OnLaunched(LaunchActivatedEventArgs e) { + Frame rootFrame = Window.Current.Content as Frame; + + // Do not repeat app initialization when the Window already has content, + // just ensure that the window is active + if (rootFrame == null) { + // Create a Frame to act as the navigation context and navigate to the first page + rootFrame = new Frame(); + + rootFrame.NavigationFailed += OnNavigationFailed; + + if (e.PreviousExecutionState == ApplicationExecutionState.Terminated) { + //TODO: Load state from previously suspended application + } + + // Place the frame in the current Window + Window.Current.Content = rootFrame; + } + + if (e.PrelaunchActivated == false) { + if (rootFrame.Content == null) { + // When the navigation stack isn't restored navigate to the first page, + // configuring the new page by passing required information as a navigation + // parameter + rootFrame.Navigate(typeof(MainPage), e.Arguments); + } + // Ensure the current window is active + Window.Current.Activate(); + } + } + + /// + /// Invoked when Navigation to a certain page fails + /// + /// The Frame which failed navigation + /// Details about the navigation failure + void OnNavigationFailed(object sender, NavigationFailedEventArgs e) { + throw new Exception("Failed to load Page " + e.SourcePageType.FullName); + } + + /// + /// Invoked when application execution is being suspended. Application state is saved + /// without knowing whether the application will be terminated or resumed with the contents + /// of memory still intact. + /// + /// The source of the suspend request. + /// Details about the suspend request. + private void OnSuspending(object sender, SuspendingEventArgs e) { + var deferral = e.SuspendingOperation.GetDeferral(); + //TODO: Save application state and stop any background activity + deferral.Complete(); + } + } +} diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/LargeTile.scale-100.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/LargeTile.scale-100.png new file mode 100644 index 0000000..f4751ce Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/LargeTile.scale-100.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/LargeTile.scale-125.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/LargeTile.scale-125.png new file mode 100644 index 0000000..9871756 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/LargeTile.scale-125.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/LargeTile.scale-150.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/LargeTile.scale-150.png new file mode 100644 index 0000000..a61100b Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/LargeTile.scale-150.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/LargeTile.scale-200.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/LargeTile.scale-200.png new file mode 100644 index 0000000..9056965 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/LargeTile.scale-200.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/LargeTile.scale-400.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/LargeTile.scale-400.png new file mode 100644 index 0000000..d49ebd9 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/LargeTile.scale-400.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/LockScreenLogo.scale-200.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/LockScreenLogo.scale-200.png new file mode 100644 index 0000000..735f57a Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/LockScreenLogo.scale-200.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SmallTile.scale-100.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SmallTile.scale-100.png new file mode 100644 index 0000000..b1202e5 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SmallTile.scale-100.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SmallTile.scale-125.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SmallTile.scale-125.png new file mode 100644 index 0000000..6205e4a Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SmallTile.scale-125.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SmallTile.scale-150.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SmallTile.scale-150.png new file mode 100644 index 0000000..494680c Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SmallTile.scale-150.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SmallTile.scale-200.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SmallTile.scale-200.png new file mode 100644 index 0000000..81e3ce7 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SmallTile.scale-200.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SmallTile.scale-400.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SmallTile.scale-400.png new file mode 100644 index 0000000..0c15e1e Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SmallTile.scale-400.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SplashScreen.scale-100.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SplashScreen.scale-100.png new file mode 100644 index 0000000..6949f07 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SplashScreen.scale-100.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SplashScreen.scale-125.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SplashScreen.scale-125.png new file mode 100644 index 0000000..c7d101f Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SplashScreen.scale-125.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SplashScreen.scale-150.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SplashScreen.scale-150.png new file mode 100644 index 0000000..478f570 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SplashScreen.scale-150.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SplashScreen.scale-200.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SplashScreen.scale-200.png new file mode 100644 index 0000000..0bdf3a5 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SplashScreen.scale-200.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SplashScreen.scale-400.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SplashScreen.scale-400.png new file mode 100644 index 0000000..d7a9123 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/SplashScreen.scale-400.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square150x150Logo.scale-100.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square150x150Logo.scale-100.png new file mode 100644 index 0000000..261e500 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square150x150Logo.scale-100.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square150x150Logo.scale-125.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square150x150Logo.scale-125.png new file mode 100644 index 0000000..2551e45 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square150x150Logo.scale-125.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square150x150Logo.scale-150.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square150x150Logo.scale-150.png new file mode 100644 index 0000000..3799bfd Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square150x150Logo.scale-150.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square150x150Logo.scale-200.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square150x150Logo.scale-200.png new file mode 100644 index 0000000..e2e5be2 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square150x150Logo.scale-200.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square150x150Logo.scale-400.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square150x150Logo.scale-400.png new file mode 100644 index 0000000..b306494 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square150x150Logo.scale-400.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png new file mode 100644 index 0000000..27bb770 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png new file mode 100644 index 0000000..bf3553e Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png new file mode 100644 index 0000000..06fc34d Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png new file mode 100644 index 0000000..e292516 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png new file mode 100644 index 0000000..5585076 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-16.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-16.png new file mode 100644 index 0000000..57fa93c Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-16.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-256.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-256.png new file mode 100644 index 0000000..9bd7c65 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-256.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-32.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-32.png new file mode 100644 index 0000000..2e7cdb6 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-32.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-48.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-48.png new file mode 100644 index 0000000..5b05208 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-48.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.scale-100.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.scale-100.png new file mode 100644 index 0000000..46f72b7 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.scale-100.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.scale-125.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.scale-125.png new file mode 100644 index 0000000..39a6ade Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.scale-125.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.scale-150.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.scale-150.png new file mode 100644 index 0000000..c6ba0b6 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.scale-150.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.scale-200.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.scale-200.png new file mode 100644 index 0000000..435a0cf Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.scale-200.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.scale-400.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.scale-400.png new file mode 100644 index 0000000..539fd92 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.scale-400.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.targetsize-16.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.targetsize-16.png new file mode 100644 index 0000000..a5f4135 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.targetsize-16.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.targetsize-24.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.targetsize-24.png new file mode 100644 index 0000000..e95d831 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.targetsize-24.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png new file mode 100644 index 0000000..2ddd6d7 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.targetsize-256.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.targetsize-256.png new file mode 100644 index 0000000..25fc57c Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.targetsize-256.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.targetsize-32.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.targetsize-32.png new file mode 100644 index 0000000..9b79b54 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.targetsize-32.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.targetsize-48.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.targetsize-48.png new file mode 100644 index 0000000..665c7cc Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Square44x44Logo.targetsize-48.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/StoreLogo.backup.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/StoreLogo.backup.png new file mode 100644 index 0000000..7385b56 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/StoreLogo.backup.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/StoreLogo.scale-100.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/StoreLogo.scale-100.png new file mode 100644 index 0000000..4973c29 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/StoreLogo.scale-100.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/StoreLogo.scale-125.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/StoreLogo.scale-125.png new file mode 100644 index 0000000..a0c7fa3 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/StoreLogo.scale-125.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/StoreLogo.scale-150.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/StoreLogo.scale-150.png new file mode 100644 index 0000000..4509f3f Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/StoreLogo.scale-150.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/StoreLogo.scale-200.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/StoreLogo.scale-200.png new file mode 100644 index 0000000..5e8541a Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/StoreLogo.scale-200.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/StoreLogo.scale-400.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/StoreLogo.scale-400.png new file mode 100644 index 0000000..3e4442c Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/StoreLogo.scale-400.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Wide310x150Logo.scale-100.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Wide310x150Logo.scale-100.png new file mode 100644 index 0000000..f955ac9 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Wide310x150Logo.scale-100.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Wide310x150Logo.scale-125.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Wide310x150Logo.scale-125.png new file mode 100644 index 0000000..9ea29bd Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Wide310x150Logo.scale-125.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Wide310x150Logo.scale-150.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Wide310x150Logo.scale-150.png new file mode 100644 index 0000000..d8d088c Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Wide310x150Logo.scale-150.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Wide310x150Logo.scale-200.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Wide310x150Logo.scale-200.png new file mode 100644 index 0000000..6949f07 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Wide310x150Logo.scale-200.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Wide310x150Logo.scale-400.png b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Wide310x150Logo.scale-400.png new file mode 100644 index 0000000..0bdf3a5 Binary files /dev/null and b/src/EyesAndEars.UWP/EyesAndEars.UWP/Assets/Wide310x150Logo.scale-400.png differ diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/EyesAndEars.UWP.csproj b/src/EyesAndEars.UWP/EyesAndEars.UWP/EyesAndEars.UWP.csproj new file mode 100644 index 0000000..358c4ae --- /dev/null +++ b/src/EyesAndEars.UWP/EyesAndEars.UWP/EyesAndEars.UWP.csproj @@ -0,0 +1,245 @@ + + + + + Debug + x86 + {0AEFB351-EA4D-4ED1-998A-AB0B0792E06B} + AppContainerExe + Properties + EyesAndEars.UWP + EyesAndEars.UWP + en-GB + UAP + 10.0.18362.0 + 10.0.18362.0 + 14 + 512 + {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + true + True + False + EyesAndEars.UWP_TemporaryKey.pfx + + + SHA256 + False + True + Always + x64 + 0 + + + true + bin\x86\Debug\ + DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP + ;2008 + full + x86 + false + prompt + true + + + bin\x86\Release\ + TRACE;NETFX_CORE;WINDOWS_UWP + true + ;2008 + pdbonly + x86 + false + prompt + true + true + + + true + bin\ARM\Debug\ + DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP + ;2008 + full + ARM + false + prompt + true + + + bin\ARM\Release\ + TRACE;NETFX_CORE;WINDOWS_UWP + true + ;2008 + pdbonly + ARM + false + prompt + true + true + + + true + bin\ARM64\Debug\ + DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP + ;2008 + full + ARM64 + false + prompt + true + true + + + bin\ARM64\Release\ + TRACE;NETFX_CORE;WINDOWS_UWP + true + ;2008 + pdbonly + ARM64 + false + prompt + true + true + + + true + bin\x64\Debug\ + DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP + ;2008 + full + x64 + false + prompt + true + true + true + + + bin\x64\Release\ + TRACE;NETFX_CORE;WINDOWS_UWP + true + ;2008 + pdbonly + x64 + false + prompt + true + true + + + PackageReference + + + + App.xaml + + + MainPage.xaml + + + + + + + + + + + + Designer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + MSBuild:Compile + Designer + + + MSBuild:Compile + Designer + + + + + 2.9.8 + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + 6.2.9 + + + 4.7.0 + + + 4.3.0 + + + + + + + 14.0 + + + + \ No newline at end of file diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/MainPage.xaml b/src/EyesAndEars.UWP/EyesAndEars.UWP/MainPage.xaml new file mode 100644 index 0000000..757992b --- /dev/null +++ b/src/EyesAndEars.UWP/EyesAndEars.UWP/MainPage.xaml @@ -0,0 +1,241 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +