From 59f73fdea8ec23aa6c5482289f9acf96079affc3 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Thu, 6 Dec 2018 09:39:54 +0200 Subject: Implemented boot screen utility for first OS boot. --- .../PPC/Tango.PPC.BootScreen/MainWindow.xaml.cs | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Software/Visual_Studio/PPC/Tango.PPC.BootScreen/MainWindow.xaml.cs (limited to 'Software/Visual_Studio/PPC/Tango.PPC.BootScreen/MainWindow.xaml.cs') diff --git a/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/MainWindow.xaml.cs b/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/MainWindow.xaml.cs new file mode 100644 index 000000000..497a59246 --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/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 Tango.PPC.BootScreen +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +} -- cgit v1.3.1