From cc9a2971a063c320d89adcda22ba053fbb45f0b2 Mon Sep 17 00:00:00 2001 From: Daniel Hafner Date: Sun, 31 Jan 2021 13:43:28 +0100 Subject: [PATCH] Add project files. --- DroneTest.UI/App.xaml | 9 +++++++++ DroneTest.UI/App.xaml.cs | 17 +++++++++++++++++ DroneTest.UI/AssemblyInfo.cs | 10 ++++++++++ DroneTest.UI/DroneTest.UI.csproj | 9 +++++++++ DroneTest.UI/MainWindow.xaml | 12 ++++++++++++ DroneTest.UI/MainWindow.xaml.cs | 28 ++++++++++++++++++++++++++++ DroneTest.sln | 25 +++++++++++++++++++++++++ 7 files changed, 110 insertions(+) create mode 100644 DroneTest.UI/App.xaml create mode 100644 DroneTest.UI/App.xaml.cs create mode 100644 DroneTest.UI/AssemblyInfo.cs create mode 100644 DroneTest.UI/DroneTest.UI.csproj create mode 100644 DroneTest.UI/MainWindow.xaml create mode 100644 DroneTest.UI/MainWindow.xaml.cs create mode 100644 DroneTest.sln diff --git a/DroneTest.UI/App.xaml b/DroneTest.UI/App.xaml new file mode 100644 index 0000000..787e0d6 --- /dev/null +++ b/DroneTest.UI/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/DroneTest.UI/App.xaml.cs b/DroneTest.UI/App.xaml.cs new file mode 100644 index 0000000..e83bffd --- /dev/null +++ b/DroneTest.UI/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace DroneTest.UI +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/DroneTest.UI/AssemblyInfo.cs b/DroneTest.UI/AssemblyInfo.cs new file mode 100644 index 0000000..8b5504e --- /dev/null +++ b/DroneTest.UI/AssemblyInfo.cs @@ -0,0 +1,10 @@ +using System.Windows; + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] diff --git a/DroneTest.UI/DroneTest.UI.csproj b/DroneTest.UI/DroneTest.UI.csproj new file mode 100644 index 0000000..8ba1d0d --- /dev/null +++ b/DroneTest.UI/DroneTest.UI.csproj @@ -0,0 +1,9 @@ + + + + WinExe + netcoreapp3.1 + true + + + diff --git a/DroneTest.UI/MainWindow.xaml b/DroneTest.UI/MainWindow.xaml new file mode 100644 index 0000000..722c6d2 --- /dev/null +++ b/DroneTest.UI/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/DroneTest.UI/MainWindow.xaml.cs b/DroneTest.UI/MainWindow.xaml.cs new file mode 100644 index 0000000..35650cd --- /dev/null +++ b/DroneTest.UI/MainWindow.xaml.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace DroneTest.UI +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +} diff --git a/DroneTest.sln b/DroneTest.sln new file mode 100644 index 0000000..f84ff45 --- /dev/null +++ b/DroneTest.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30907.101 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DroneTest.UI", "DroneTest.UI\DroneTest.UI.csproj", "{9B26D07D-BACD-4CBC-A46E-2FAF39C46DE5}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9B26D07D-BACD-4CBC-A46E-2FAF39C46DE5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9B26D07D-BACD-4CBC-A46E-2FAF39C46DE5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9B26D07D-BACD-4CBC-A46E-2FAF39C46DE5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9B26D07D-BACD-4CBC-A46E-2FAF39C46DE5}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {C3570546-0422-443C-9DA8-3A8509B7D1B6} + EndGlobalSection +EndGlobal