diff --git a/.vs/DeskHubSharp/v15/.suo b/.vs/DeskHubSharp/v15/.suo
index 37338e7..e32bd8d 100644
Binary files a/.vs/DeskHubSharp/v15/.suo and b/.vs/DeskHubSharp/v15/.suo differ
diff --git a/.vs/DeskHubSharp/v15/Server/sqlite3/storage.ide b/.vs/DeskHubSharp/v15/Server/sqlite3/storage.ide
index 56758a8..7da5814 100644
Binary files a/.vs/DeskHubSharp/v15/Server/sqlite3/storage.ide and b/.vs/DeskHubSharp/v15/Server/sqlite3/storage.ide differ
diff --git a/.vs/DeskHubSharp/v15/Server/sqlite3/storage.ide-shm b/.vs/DeskHubSharp/v15/Server/sqlite3/storage.ide-shm
index 6a24a5d..c4d5ca1 100644
Binary files a/.vs/DeskHubSharp/v15/Server/sqlite3/storage.ide-shm and b/.vs/DeskHubSharp/v15/Server/sqlite3/storage.ide-shm differ
diff --git a/.vs/DeskHubSharp/v15/Server/sqlite3/storage.ide-wal b/.vs/DeskHubSharp/v15/Server/sqlite3/storage.ide-wal
index 0a921dd..4614ddd 100644
Binary files a/.vs/DeskHubSharp/v15/Server/sqlite3/storage.ide-wal and b/.vs/DeskHubSharp/v15/Server/sqlite3/storage.ide-wal differ
diff --git a/DeskHubSharp/AboutWindow.xaml b/DeskHubSharp/AboutWindow.xaml
new file mode 100644
index 0000000..a0ef7ad
--- /dev/null
+++ b/DeskHubSharp/AboutWindow.xaml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
diff --git a/DeskHubSharp/AboutWindow.xaml.cs b/DeskHubSharp/AboutWindow.xaml.cs
new file mode 100644
index 0000000..e7ebe64
--- /dev/null
+++ b/DeskHubSharp/AboutWindow.xaml.cs
@@ -0,0 +1,32 @@
+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.Shapes;
+
+namespace DeskHubSharp
+{
+ ///
+ /// Interaction logic for AboutWindow.xaml
+ ///
+ public partial class AboutWindow : Window
+ {
+ public AboutWindow()
+ {
+ InitializeComponent();
+ }
+
+ private void btn_close_Click(object sender, RoutedEventArgs e)
+ {
+ this.Close();
+ }
+ }
+}
diff --git a/DeskHubSharp/BusinessLayer/Email.cs b/DeskHubSharp/BusinessLayer/Email.cs
new file mode 100644
index 0000000..e7a4cfb
--- /dev/null
+++ b/DeskHubSharp/BusinessLayer/Email.cs
@@ -0,0 +1,79 @@
+using System;
+using System.Net;
+using System.Net.Mail;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Controls;
+
+namespace DeskHubSharp
+{
+ class Email
+ {
+ // TODO: finish this class
+
+ private string _to = "wyatt@wyattjmiller.com";
+ private string _from = "wjmiller2016@gmail.com";
+ private string _name;
+ private string _message;
+
+ public Email(TextBox name, TextBox emailBody)
+ {
+ _name = name.Text;
+ _message = emailBody.Text;
+ }
+
+ private bool IsValidated()
+ {
+ if (_name == "")
+ {
+ ErrorWindow err = new ErrorWindow();
+ err.lbl_title.Content = "Oops.";
+ err.txtblk_error.Text = "Please fill in your name.";
+ err.ShowDialog();
+ return false;
+ }
+ if (_message == "")
+ {
+ ErrorWindow err = new ErrorWindow();
+ err.lbl_title.Content = "Oops.";
+ err.txtblk_error.Text = "Please fill in your message to the developer.";
+ err.ShowDialog();
+ return false;
+ }
+
+ return true;
+ }
+
+ public void CreateMessage()
+ {
+ if (IsValidated())
+ {
+ // TODO: get a test email to send
+ string subject = $"DeskHubSharp: {_name} requires your attention.";
+ string body = $"{_message}";
+ MailMessage message = new MailMessage(_from, _to, subject, body);
+ SmtpClient client = new SmtpClient("smtp.gmail.com");
+ //Console.WriteLine("Changing time out from {0} to 100.", client.Timeout);
+ client.Timeout = 1000;
+ // Credentials are necessary if the server requires the client
+ // to authenticate before it will send e-mail on the client's behalf.
+ client.Credentials = CredentialCache.DefaultNetworkCredentials;
+
+ try
+ {
+ client.Send(message);
+ }
+ catch (Exception e)
+ {
+ ErrorWindow err = new ErrorWindow();
+ Console.WriteLine("Exception caught in CreateTimeoutTestMessage(): {0}",
+ e.ToString());
+ err.ShowDialog();
+ }
+ }
+ }
+
+ }
+}
diff --git a/DeskHubSharp/BusinessLayer/Request.cs b/DeskHubSharp/BusinessLayer/Request.cs
new file mode 100644
index 0000000..2ccab10
--- /dev/null
+++ b/DeskHubSharp/BusinessLayer/Request.cs
@@ -0,0 +1,21 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Net;
+using System.Net.Mail;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace DeskHubSharp
+{
+ class Request
+ {
+ public Request()
+ {
+
+ }
+
+
+
+ }
+}
diff --git a/DeskHubSharp/DAL/IDataService.cs b/DeskHubSharp/DAL/IDataService.cs
index 225f091..524d14e 100644
--- a/DeskHubSharp/DAL/IDataService.cs
+++ b/DeskHubSharp/DAL/IDataService.cs
@@ -4,11 +4,11 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
-namespace CIT225FinalAppication
+namespace DeskHubSharp
{
public interface IDataService
{
- List ReadAll();
- void WriteAll(List characters);
+ List ReadAll();
+ void WriteAll(List user);
}
}
diff --git a/DeskHubSharp/DAL/JsonDataService.cs b/DeskHubSharp/DAL/JsonDataService.cs
new file mode 100644
index 0000000..139c112
--- /dev/null
+++ b/DeskHubSharp/DAL/JsonDataService.cs
@@ -0,0 +1,77 @@
+using System;
+using System.Collections;
+using System.Collections.Generic;
+using System.IO;
+using Newtonsoft.Json;
+using Newtonsoft;
+using System.Xml.Serialization;
+
+namespace DeskHubSharp
+{
+ public class JsonDataService
+ {
+ // TODO: Fundamently broken. Will decide what to do with this.
+
+ private string _dataConfig;
+
+ ///
+ /// reads all the things from the json string/data
+ ///
+ ///
+ public IEnumerable ReadAll()
+ {
+ List user = new List();
+
+ try
+ {
+ using (StreamReader sr = new StreamReader(_dataConfig))
+ {
+ string jsonString = sr.ReadToEnd();
+
+ Search.ItemsItem users = JsonConvert.DeserializeObject(_dataConfig);
+ //user = users.items;
+ }
+
+ }
+ catch (Exception e)
+ {
+ throw;
+ }
+
+ return user;
+ }
+
+
+ public void WriteAll(IEnumerable characters)
+ {
+ //RootObject rootObject = new RootObject();
+ //rootObject.Characters = new Characters();
+ //rootObject.Characters.Character = characters as List;
+
+ //string jsonString = JsonConvert.SerializeObject(rootObject);
+
+ try
+ {
+ StreamWriter writer = new StreamWriter(_dataConfig);
+ using (writer)
+ {
+ //writer.WriteLine(jsonString);
+ }
+ }
+ catch (Exception e)
+ {
+ throw;
+ }
+ }
+
+ public JsonDataService()
+ {
+
+ }
+
+ public JsonDataService(string dataFile)
+ {
+ _dataConfig = dataFile;
+ }
+ }
+}
diff --git a/DeskHubSharp/DAL/XmlDataService.cs b/DeskHubSharp/DAL/XmlDataService.cs
index 45d7be0..756b7b0 100644
--- a/DeskHubSharp/DAL/XmlDataService.cs
+++ b/DeskHubSharp/DAL/XmlDataService.cs
@@ -6,7 +6,7 @@ using System.Threading.Tasks;
using System.Xml.Serialization;
using System.IO;
-namespace CIT225FinalAppication
+namespace DeskHubSharp
{
class XmlDataService
{
diff --git a/DeskHubSharp/Data/DataConfig.cs b/DeskHubSharp/Data/DataConfig.cs
new file mode 100644
index 0000000..354c259
--- /dev/null
+++ b/DeskHubSharp/Data/DataConfig.cs
@@ -0,0 +1,13 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace DeskHubSharp
+{
+ class DataConfig
+ {
+ public string dataConfString = "";
+ }
+}
diff --git a/DeskHubSharp/DeskHubSharp.csproj b/DeskHubSharp/DeskHubSharp.csproj
index ec23549..2cb38f3 100644
--- a/DeskHubSharp/DeskHubSharp.csproj
+++ b/DeskHubSharp/DeskHubSharp.csproj
@@ -35,8 +35,15 @@
4
+
+ ..\packages\Newtonsoft.Json.11.0.2\lib\net45\Newtonsoft.Json.dll
+
+
+ ..\packages\RestSharp.106.5.4\lib\net452\RestSharp.dll
+
+
@@ -54,23 +61,64 @@
MSBuild:Compile
+
+
+ SearchWindow.xaml
+
+
+ MSBuild:Compile
+
+
+ MSBuild:Compile
+
+
+ MSBuild:Compile
+
+
+ MSBuild:Compile
+
+
+ MSBuild:Compile
+
MSBuild:Compile
Designer
+
+ AboutWindow.xaml
+
App.xaml
Code
+
+
+
+
+ DetailWindow.xaml
+
+
+ ErrorWindow.xaml
+
+
+ FeedbackWindow.xaml
+
+
+ HelpWindow.xaml
+
MainWindow.xaml
Code
+
+ MSBuild:Compile
+
+
@@ -91,6 +139,7 @@
Resources.Designer.cs
+
SettingsSingleFileGenerator
Settings.Designer.cs
@@ -99,8 +148,9 @@
+
-
+
\ No newline at end of file
diff --git a/DeskHubSharp/DetailWindow.xaml b/DeskHubSharp/DetailWindow.xaml
new file mode 100644
index 0000000..fde7ff1
--- /dev/null
+++ b/DeskHubSharp/DetailWindow.xaml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
diff --git a/DeskHubSharp/DetailWindow.xaml.cs b/DeskHubSharp/DetailWindow.xaml.cs
new file mode 100644
index 0000000..416b951
--- /dev/null
+++ b/DeskHubSharp/DetailWindow.xaml.cs
@@ -0,0 +1,32 @@
+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.Shapes;
+
+namespace DeskHubSharp
+{
+ ///
+ /// Interaction logic for DetailWindow.xaml
+ ///
+ public partial class DetailWindow : Window
+ {
+ public DetailWindow()
+ {
+ InitializeComponent();
+ }
+
+ private void btn_close_Click(object sender, RoutedEventArgs e)
+ {
+ this.Close();
+ }
+ }
+}
diff --git a/DeskHubSharp/ErrorWindow.xaml b/DeskHubSharp/ErrorWindow.xaml
new file mode 100644
index 0000000..ff49bbb
--- /dev/null
+++ b/DeskHubSharp/ErrorWindow.xaml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
diff --git a/DeskHubSharp/ErrorWindow.xaml.cs b/DeskHubSharp/ErrorWindow.xaml.cs
new file mode 100644
index 0000000..83edf55
--- /dev/null
+++ b/DeskHubSharp/ErrorWindow.xaml.cs
@@ -0,0 +1,32 @@
+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.Shapes;
+
+namespace DeskHubSharp
+{
+ ///
+ /// Interaction logic for ErrorWindow.xaml
+ ///
+ public partial class ErrorWindow : Window
+ {
+ public ErrorWindow()
+ {
+ InitializeComponent();
+ }
+
+ private void Button_Click(object sender, RoutedEventArgs e)
+ {
+ this.Close();
+ }
+ }
+}
diff --git a/DeskHubSharp/FeedbackWindow.xaml b/DeskHubSharp/FeedbackWindow.xaml
new file mode 100644
index 0000000..590b061
--- /dev/null
+++ b/DeskHubSharp/FeedbackWindow.xaml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/DeskHubSharp/FeedbackWindow.xaml.cs b/DeskHubSharp/FeedbackWindow.xaml.cs
new file mode 100644
index 0000000..559908b
--- /dev/null
+++ b/DeskHubSharp/FeedbackWindow.xaml.cs
@@ -0,0 +1,38 @@
+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.Shapes;
+
+namespace DeskHubSharp
+{
+ ///
+ /// Interaction logic for FeedbackWindow.xaml
+ ///
+ public partial class FeedbackWindow : Window
+ {
+ public FeedbackWindow()
+ {
+ InitializeComponent();
+ }
+
+ private void btn_discard_Click(object sender, RoutedEventArgs e)
+ {
+ this.Close();
+ }
+
+ private void btn_send_Click(object sender, RoutedEventArgs e)
+ {
+ Email email = new Email(txtbox_name, txtbox_feedbackmessage);
+ email.CreateMessage();
+ }
+ }
+}
diff --git a/DeskHubSharp/HelpWindow.xaml b/DeskHubSharp/HelpWindow.xaml
new file mode 100644
index 0000000..a7fb5ff
--- /dev/null
+++ b/DeskHubSharp/HelpWindow.xaml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
diff --git a/DeskHubSharp/HelpWindow.xaml.cs b/DeskHubSharp/HelpWindow.xaml.cs
new file mode 100644
index 0000000..81efad2
--- /dev/null
+++ b/DeskHubSharp/HelpWindow.xaml.cs
@@ -0,0 +1,32 @@
+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.Shapes;
+
+namespace DeskHubSharp
+{
+ ///
+ /// Interaction logic for HelpWindow.xaml
+ ///
+ public partial class HelpWindow : Window
+ {
+ public HelpWindow()
+ {
+ InitializeComponent();
+ }
+
+ private void btn_close_Click(object sender, RoutedEventArgs e)
+ {
+ this.Close();
+ }
+ }
+}
diff --git a/DeskHubSharp/MainWindow.xaml b/DeskHubSharp/MainWindow.xaml
index bd3499f..15b44d9 100644
--- a/DeskHubSharp/MainWindow.xaml
+++ b/DeskHubSharp/MainWindow.xaml
@@ -7,12 +7,13 @@
mc:Ignorable="d"
Title="DeskHubSharp" Height="450" Width="800">
-
-
-
-
-
+
+
+
+
+
+
diff --git a/DeskHubSharp/MainWindow.xaml.cs b/DeskHubSharp/MainWindow.xaml.cs
index cce3111..e3cccb0 100644
--- a/DeskHubSharp/MainWindow.xaml.cs
+++ b/DeskHubSharp/MainWindow.xaml.cs
@@ -24,5 +24,40 @@ namespace DeskHubSharp
{
InitializeComponent();
}
+
+ private void btn_detail_Click(object sender, RoutedEventArgs e)
+ {
+ DetailWindow detail = new DetailWindow();
+ detail.ShowDialog();
+ }
+
+ private void btn_exit_Click(object sender, RoutedEventArgs e)
+ {
+ this.Close();
+ }
+
+ private void btn_about_Click(object sender, RoutedEventArgs e)
+ {
+ AboutWindow about = new AboutWindow();
+ about.ShowDialog();
+ }
+
+ private void btn_feedback_Click(object sender, RoutedEventArgs e)
+ {
+ FeedbackWindow feedback = new FeedbackWindow();
+ feedback.ShowDialog();
+ }
+
+ private void btn_help_Click(object sender, RoutedEventArgs e)
+ {
+ HelpWindow help = new HelpWindow();
+ help.ShowDialog();
+ }
+
+ private void btn_search_Click(object sender, RoutedEventArgs e)
+ {
+ SearchWindow search = new SearchWindow();
+ search.ShowDialog();
+ }
}
}
diff --git a/DeskHubSharp/Models/RepoList.cs b/DeskHubSharp/Models/RepoList.cs
new file mode 100644
index 0000000..42fc2e8
--- /dev/null
+++ b/DeskHubSharp/Models/RepoList.cs
@@ -0,0 +1,16 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace DeskHubSharp
+{
+ class RepoList
+ {
+ // ideas
+ // 1. have a for loop iterate on copies on this one particular file, if possible :p
+ // 2. have the request/reponse go through the DAL/jsondataservice.cs and have it dish out the response that way
+ // to be continued...
+ }
+}
diff --git a/DeskHubSharp/Models/Search.cs b/DeskHubSharp/Models/Search.cs
index ba844ba..5272fb5 100644
--- a/DeskHubSharp/Models/Search.cs
+++ b/DeskHubSharp/Models/Search.cs
@@ -147,6 +147,6 @@ namespace DeskHubSharp
///
///
///
- public List items { get; set; }
+ public List items { get; set; }
}
}
\ No newline at end of file
diff --git a/DeskHubSharp/Models/User.cs b/DeskHubSharp/Models/User.cs
index fc2db3b..3d63337 100644
--- a/DeskHubSharp/Models/User.cs
+++ b/DeskHubSharp/Models/User.cs
@@ -1,3 +1,5 @@
+using System.Collections.Generic;
+
namespace DeskHubSharp
{
public class User
diff --git a/DeskHubSharp/SearchWindow.xaml b/DeskHubSharp/SearchWindow.xaml
new file mode 100644
index 0000000..6cdfa18
--- /dev/null
+++ b/DeskHubSharp/SearchWindow.xaml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/DeskHubSharp/SearchWindow.xaml.cs b/DeskHubSharp/SearchWindow.xaml.cs
new file mode 100644
index 0000000..6b9fe71
--- /dev/null
+++ b/DeskHubSharp/SearchWindow.xaml.cs
@@ -0,0 +1,32 @@
+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.Shapes;
+
+namespace DeskHubSharp
+{
+ ///
+ /// Interaction logic for SearchWindow.xaml
+ ///
+ public partial class SearchWindow : Window
+ {
+ public SearchWindow()
+ {
+ InitializeComponent();
+ }
+
+ private void btn_close_Click(object sender, RoutedEventArgs e)
+ {
+ this.Close();
+ }
+ }
+}
diff --git a/DeskHubSharp/colors.txt b/DeskHubSharp/colors.txt
new file mode 100644
index 0000000..a68867e
--- /dev/null
+++ b/DeskHubSharp/colors.txt
@@ -0,0 +1,4 @@
+#4285f4 Blue
+#ea4335 Red
+#FBBC05 Yellow
+#34a853 Green
diff --git a/DeskHubSharp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/DeskHubSharp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
index e534240..d4337ea 100644
Binary files a/DeskHubSharp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/DeskHubSharp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/DeskHubSharp/obj/Debug/DeskHubSharp.csproj.CoreCompileInputs.cache b/DeskHubSharp/obj/Debug/DeskHubSharp.csproj.CoreCompileInputs.cache
index 4494229..5a5a1b4 100644
--- a/DeskHubSharp/obj/Debug/DeskHubSharp.csproj.CoreCompileInputs.cache
+++ b/DeskHubSharp/obj/Debug/DeskHubSharp.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-7391b52a0f6d0b847bdb2ddfe6bbf253a53b1571
+96be73db692ee81a8077a343a13bb0e84e99fc14
diff --git a/DeskHubSharp/obj/Debug/DeskHubSharp.csprojAssemblyReference.cache b/DeskHubSharp/obj/Debug/DeskHubSharp.csprojAssemblyReference.cache
index 82b08f1..6ace6b4 100644
Binary files a/DeskHubSharp/obj/Debug/DeskHubSharp.csprojAssemblyReference.cache and b/DeskHubSharp/obj/Debug/DeskHubSharp.csprojAssemblyReference.cache differ
diff --git a/DeskHubSharp/obj/Debug/DeskHubSharp_MarkupCompile.cache b/DeskHubSharp/obj/Debug/DeskHubSharp_MarkupCompile.cache
index 4828d9c..35ca60f 100644
--- a/DeskHubSharp/obj/Debug/DeskHubSharp_MarkupCompile.cache
+++ b/DeskHubSharp/obj/Debug/DeskHubSharp_MarkupCompile.cache
@@ -10,11 +10,11 @@ none
false
DEBUG;TRACE
C:\Users\Wyatt\Desktop\Source\DeskHubSharp\DeskHubSharp\App.xaml
-11151548125
+7-86569338
-14-1462911538
-131569487696
-MainWindow.xaml;
+21133474928
+16-2010050379
+AboutWindow.xaml;DetailWindow.xaml;ErrorWindow.xaml;FeedbackWindow.xaml;HelpWindow.xaml;MainWindow.xaml;SearchWindow.xaml;
-True
+False
diff --git a/DeskHubSharp/obj/Debug/DeskHubSharp_MarkupCompile.i.cache b/DeskHubSharp/obj/Debug/DeskHubSharp_MarkupCompile.i.cache
index eb8f54d..1537c39 100644
--- a/DeskHubSharp/obj/Debug/DeskHubSharp_MarkupCompile.i.cache
+++ b/DeskHubSharp/obj/Debug/DeskHubSharp_MarkupCompile.i.cache
@@ -10,11 +10,11 @@ none
false
DEBUG;TRACE
C:\Users\Wyatt\Desktop\Source\DeskHubSharp\DeskHubSharp\App.xaml
-11151548125
+7-86569338
-14-1462911538
-131569487696
-MainWindow.xaml;
+25-65043429
+16-2010050379
+AboutWindow.xaml;DetailWindow.xaml;ErrorWindow.xaml;FeedbackWindow.xaml;HelpWindow.xaml;MainWindow.xaml;SearchWindow.xaml;
-False
+True
diff --git a/DeskHubSharp/obj/Debug/DeskHubSharp_MarkupCompile.lref b/DeskHubSharp/obj/Debug/DeskHubSharp_MarkupCompile.lref
index bb5a7aa..9ca99a8 100644
--- a/DeskHubSharp/obj/Debug/DeskHubSharp_MarkupCompile.lref
+++ b/DeskHubSharp/obj/Debug/DeskHubSharp_MarkupCompile.lref
@@ -1,4 +1,10 @@
+FC:\Users\Wyatt\Desktop\Source\DeskHubSharp\DeskHubSharp\AboutWindow.xaml;;
+FC:\Users\Wyatt\Desktop\Source\DeskHubSharp\DeskHubSharp\DetailWindow.xaml;;
+FC:\Users\Wyatt\Desktop\Source\DeskHubSharp\DeskHubSharp\ErrorWindow.xaml;;
+FC:\Users\Wyatt\Desktop\Source\DeskHubSharp\DeskHubSharp\FeedbackWindow.xaml;;
+FC:\Users\Wyatt\Desktop\Source\DeskHubSharp\DeskHubSharp\HelpWindow.xaml;;
FC:\Users\Wyatt\Desktop\Source\DeskHubSharp\DeskHubSharp\MainWindow.xaml;;
+FC:\Users\Wyatt\Desktop\Source\DeskHubSharp\DeskHubSharp\SearchWindow.xaml;;
diff --git a/DeskHubSharp/obj/Debug/MainWindow.g.cs b/DeskHubSharp/obj/Debug/MainWindow.g.cs
index de13aaa..f9edc04 100644
--- a/DeskHubSharp/obj/Debug/MainWindow.g.cs
+++ b/DeskHubSharp/obj/Debug/MainWindow.g.cs
@@ -1,4 +1,4 @@
-#pragma checksum "..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "1AE5B7DD0CC2B9B65063F70EEDEB30A083D51076"
+#pragma checksum "..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "814C08D5FA0D40972C7641EDC7C65F0E68227ECE"
//------------------------------------------------------------------------------
//
// This code was generated by a tool.
@@ -40,6 +40,54 @@ namespace DeskHubSharp {
///
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ #line 10 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Button btn_search;
+
+ #line default
+ #line hidden
+
+
+ #line 11 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Button btn_detail;
+
+ #line default
+ #line hidden
+
+
+ #line 12 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Button btn_feedback;
+
+ #line default
+ #line hidden
+
+
+ #line 13 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Button btn_help;
+
+ #line default
+ #line hidden
+
+
+ #line 14 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Button btn_about;
+
+ #line default
+ #line hidden
+
+
+ #line 16 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Button btn_exit;
+
+ #line default
+ #line hidden
+
private bool _contentLoaded;
///
@@ -68,6 +116,63 @@ namespace DeskHubSharp {
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+ this.btn_search = ((System.Windows.Controls.Button)(target));
+
+ #line 10 "..\..\MainWindow.xaml"
+ this.btn_search.Click += new System.Windows.RoutedEventHandler(this.btn_search_Click);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+ this.btn_detail = ((System.Windows.Controls.Button)(target));
+
+ #line 11 "..\..\MainWindow.xaml"
+ this.btn_detail.Click += new System.Windows.RoutedEventHandler(this.btn_detail_Click);
+
+ #line default
+ #line hidden
+ return;
+ case 3:
+ this.btn_feedback = ((System.Windows.Controls.Button)(target));
+
+ #line 12 "..\..\MainWindow.xaml"
+ this.btn_feedback.Click += new System.Windows.RoutedEventHandler(this.btn_feedback_Click);
+
+ #line default
+ #line hidden
+ return;
+ case 4:
+ this.btn_help = ((System.Windows.Controls.Button)(target));
+
+ #line 13 "..\..\MainWindow.xaml"
+ this.btn_help.Click += new System.Windows.RoutedEventHandler(this.btn_help_Click);
+
+ #line default
+ #line hidden
+ return;
+ case 5:
+ this.btn_about = ((System.Windows.Controls.Button)(target));
+
+ #line 14 "..\..\MainWindow.xaml"
+ this.btn_about.Click += new System.Windows.RoutedEventHandler(this.btn_about_Click);
+
+ #line default
+ #line hidden
+ return;
+ case 6:
+ this.btn_exit = ((System.Windows.Controls.Button)(target));
+
+ #line 16 "..\..\MainWindow.xaml"
+ this.btn_exit.Click += new System.Windows.RoutedEventHandler(this.btn_exit_Click);
+
+ #line default
+ #line hidden
+ return;
+ }
this._contentLoaded = true;
}
}
diff --git a/DeskHubSharp/obj/Debug/MainWindow.g.i.cs b/DeskHubSharp/obj/Debug/MainWindow.g.i.cs
index de13aaa..f9edc04 100644
--- a/DeskHubSharp/obj/Debug/MainWindow.g.i.cs
+++ b/DeskHubSharp/obj/Debug/MainWindow.g.i.cs
@@ -1,4 +1,4 @@
-#pragma checksum "..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "1AE5B7DD0CC2B9B65063F70EEDEB30A083D51076"
+#pragma checksum "..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "814C08D5FA0D40972C7641EDC7C65F0E68227ECE"
//------------------------------------------------------------------------------
//
// This code was generated by a tool.
@@ -40,6 +40,54 @@ namespace DeskHubSharp {
///
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ #line 10 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Button btn_search;
+
+ #line default
+ #line hidden
+
+
+ #line 11 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Button btn_detail;
+
+ #line default
+ #line hidden
+
+
+ #line 12 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Button btn_feedback;
+
+ #line default
+ #line hidden
+
+
+ #line 13 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Button btn_help;
+
+ #line default
+ #line hidden
+
+
+ #line 14 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Button btn_about;
+
+ #line default
+ #line hidden
+
+
+ #line 16 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Button btn_exit;
+
+ #line default
+ #line hidden
+
private bool _contentLoaded;
///
@@ -68,6 +116,63 @@ namespace DeskHubSharp {
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+ this.btn_search = ((System.Windows.Controls.Button)(target));
+
+ #line 10 "..\..\MainWindow.xaml"
+ this.btn_search.Click += new System.Windows.RoutedEventHandler(this.btn_search_Click);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+ this.btn_detail = ((System.Windows.Controls.Button)(target));
+
+ #line 11 "..\..\MainWindow.xaml"
+ this.btn_detail.Click += new System.Windows.RoutedEventHandler(this.btn_detail_Click);
+
+ #line default
+ #line hidden
+ return;
+ case 3:
+ this.btn_feedback = ((System.Windows.Controls.Button)(target));
+
+ #line 12 "..\..\MainWindow.xaml"
+ this.btn_feedback.Click += new System.Windows.RoutedEventHandler(this.btn_feedback_Click);
+
+ #line default
+ #line hidden
+ return;
+ case 4:
+ this.btn_help = ((System.Windows.Controls.Button)(target));
+
+ #line 13 "..\..\MainWindow.xaml"
+ this.btn_help.Click += new System.Windows.RoutedEventHandler(this.btn_help_Click);
+
+ #line default
+ #line hidden
+ return;
+ case 5:
+ this.btn_about = ((System.Windows.Controls.Button)(target));
+
+ #line 14 "..\..\MainWindow.xaml"
+ this.btn_about.Click += new System.Windows.RoutedEventHandler(this.btn_about_Click);
+
+ #line default
+ #line hidden
+ return;
+ case 6:
+ this.btn_exit = ((System.Windows.Controls.Button)(target));
+
+ #line 16 "..\..\MainWindow.xaml"
+ this.btn_exit.Click += new System.Windows.RoutedEventHandler(this.btn_exit_Click);
+
+ #line default
+ #line hidden
+ return;
+ }
this._contentLoaded = true;
}
}
diff --git a/DeskHubSharp/packages.config b/DeskHubSharp/packages.config
new file mode 100644
index 0000000..94c81c3
--- /dev/null
+++ b/DeskHubSharp/packages.config
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file