From 565afd35baab8b2846ebc80a6802a375b3fd876e Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Sun, 1 Sep 2019 17:46:47 +0300 Subject: Added bug reporting module to PPC !! --- .../Tango.PPC.BugReporting/Views/MainView.xaml | 94 ++++++++++++++++++++++ .../Tango.PPC.BugReporting/Views/MainView.xaml.cs | 28 +++++++ 2 files changed, 122 insertions(+) create mode 100644 Software/Visual_Studio/PPC/Modules/Tango.PPC.BugReporting/Views/MainView.xaml create mode 100644 Software/Visual_Studio/PPC/Modules/Tango.PPC.BugReporting/Views/MainView.xaml.cs (limited to 'Software/Visual_Studio/PPC/Modules/Tango.PPC.BugReporting/Views') diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.BugReporting/Views/MainView.xaml b/Software/Visual_Studio/PPC/Modules/Tango.PPC.BugReporting/Views/MainView.xaml new file mode 100644 index 000000000..563cd49a6 --- /dev/null +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.BugReporting/Views/MainView.xaml @@ -0,0 +1,94 @@ + + + + + + + + + + + + + Report Issue + + + + + + + + SUBMIT + + + + Submitting report.. + + + + + + + + + + + Details + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Steps To Reproduce + + + + + + + + + + + + + + + diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.BugReporting/Views/MainView.xaml.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.BugReporting/Views/MainView.xaml.cs new file mode 100644 index 000000000..56342d3c2 --- /dev/null +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.BugReporting/Views/MainView.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.BugReporting.Views +{ + /// + /// Interaction logic for MainView.xaml + /// + public partial class MainView : UserControl + { + public MainView() + { + InitializeComponent(); + } + } +} -- cgit v1.3.1