diff --git a/.vs/DeskHubSharp/v15/.suo b/.vs/DeskHubSharp/v15/.suo
index 606aacc..439d2ea 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 a0ba93e..b8faaf4 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 e034d9c..00c9850 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 b8abb09..50d6117 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
index a0ef7ad..e21dcc2 100644
--- a/DeskHubSharp/AboutWindow.xaml
+++ b/DeskHubSharp/AboutWindow.xaml
@@ -5,11 +5,35 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:DeskHubSharp"
mc:Ignorable="d"
- Title="AboutWindow" Height="450" Width="400">
+ Title="About - DeskHubSharp" Height="450" Width="400" ResizeMode="NoResize">
-
-
+
+
+
+
+
+ Want to help with development?
+
+
+
+ This project cannot be done without the help of
+
+ johnvelis
+
+ ,
+
+ NoahFlowa
+
+ ,
+
+ ericgi231
+
+ , and
+
+ tarkowr.
+
+
diff --git a/DeskHubSharp/AboutWindow.xaml.cs b/DeskHubSharp/AboutWindow.xaml.cs
index e7ebe64..4d1633d 100644
--- a/DeskHubSharp/AboutWindow.xaml.cs
+++ b/DeskHubSharp/AboutWindow.xaml.cs
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
+using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
@@ -10,6 +11,7 @@ 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 DeskHubSharp
@@ -28,5 +30,35 @@ namespace DeskHubSharp
{
this.Close();
}
+
+ private void Hyperlink_RequestNavigate(object sender, RequestNavigateEventArgs e)
+ {
+ Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri));
+ e.Handled = true;
+ }
+
+ private void Hyperlink_RequestNavigate_1(object sender, RequestNavigateEventArgs e)
+ {
+ Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri));
+ e.Handled = true;
+ }
+
+ private void Hyperlink_RequestNavigate_2(object sender, RequestNavigateEventArgs e)
+ {
+ Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri));
+ e.Handled = true;
+ }
+
+ private void Hyperlink_RequestNavigate_3(object sender, RequestNavigateEventArgs e)
+ {
+ Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri));
+ e.Handled = true;
+ }
+
+ private void Hyperlink_RequestNavigate_4(object sender, RequestNavigateEventArgs e)
+ {
+ Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri));
+ e.Handled = true;
+ }
}
}
diff --git a/DeskHubSharp/BusinessLayer/Request.cs b/DeskHubSharp/BusinessLayer/Request.cs
index 4675efe..8e297aa 100644
--- a/DeskHubSharp/BusinessLayer/Request.cs
+++ b/DeskHubSharp/BusinessLayer/Request.cs
@@ -39,28 +39,72 @@ namespace DeskHubSharp
///
public void SearchRequest()
{
- var client = new RestClient(_apiEndpoint);
- RestRequest requestRepo = new RestRequest($"users/{_query}/repos", Method.GET);
+ try
+ {
+ var client = new RestClient(_apiEndpoint);
+ RestRequest requestRepo = new RestRequest($"users/{_query}/repos", Method.GET);
- var response = client.Execute(requestRepo);
- var x = response.Content;
- var deserialized = JsonConvert.DeserializeObject>(x);
+ var response = client.Execute(requestRepo);
+ var x = response.Content;
+ var deserialized = JsonConvert.DeserializeObject>(x);
- RepoList.repoDetail = deserialized;
+ //ObservableCollection test = new ObservableCollection()
+ //{
+ // new RepoDetail()
+ // {
+ // Login = "John",
+ // Password = "pw"
+ // }
+ //};
+
+ if (deserialized.Count() == 0)
+ {
+ throw new Exception();
+ }
+ else
+ {
+ RepoList.repoDetail = deserialized;
+ }
+ }
+ catch (Exception)
+ {
+ ErrorWindow err = new ErrorWindow();
+ err.txtblk_error.Text = "We couldn't gather repository data. Please try again";
+ }
}
+
///
- /// Deprecated: Calls API for user data
+ /// Calls API for detailed user data
///
public void UserRequest()
{
- var client = new RestClient(_apiEndpoint);
+ try
+ {
+ var client = new RestClient(_apiEndpoint);
- RestRequest requestUser = new RestRequest($"users/{_query}", Method.GET);
+ RestRequest requestUser = new RestRequest($"users/{_query}", Method.GET);
+
+ var response = client.Execute(requestUser);
+ string x = response.Content;
+ var deserailized = JsonConvert.DeserializeObject(x);
+
+ if (deserailized == null)
+ {
+ throw new Exception();
+ }
+ else
+ {
+ RepoList.userDetail = deserailized;
+ }
+
+ }
+ catch (Exception)
+ {
+ ErrorWindow err = new ErrorWindow();
+ err.txtblk_error.Text = "We couldn't gather user data. Please try again.";
+ }
- var response = client.Execute(requestUser);
- string x = response.ToString();
- var deserialized = JsonConvert.DeserializeObject(x);
}
}
diff --git a/DeskHubSharp/DeskHubSharp.csproj b/DeskHubSharp/DeskHubSharp.csproj
index 3b59cb3..de886c3 100644
--- a/DeskHubSharp/DeskHubSharp.csproj
+++ b/DeskHubSharp/DeskHubSharp.csproj
@@ -73,6 +73,9 @@
+
+
+
SearchWindow.xaml
diff --git a/DeskHubSharp/DetailWindow.xaml b/DeskHubSharp/DetailWindow.xaml
index fde7ff1..71e3fd9 100644
--- a/DeskHubSharp/DetailWindow.xaml
+++ b/DeskHubSharp/DetailWindow.xaml
@@ -5,11 +5,12 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:DeskHubSharp"
mc:Ignorable="d"
- Title="Detail - DeskHubSharp" Height="450" Width="800">
+ Title="Detail - DeskHubSharp" Height="450" Width="800" ResizeMode="NoResize">
+
diff --git a/DeskHubSharp/DetailWindow.xaml.cs b/DeskHubSharp/DetailWindow.xaml.cs
index 416b951..6c8e563 100644
--- a/DeskHubSharp/DetailWindow.xaml.cs
+++ b/DeskHubSharp/DetailWindow.xaml.cs
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
+using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
@@ -19,9 +20,14 @@ namespace DeskHubSharp
///
public partial class DetailWindow : Window
{
- public DetailWindow()
+ private RepoDetail _repoDetail;
+
+ public DetailWindow(RepoDetail repoDetail)
{
InitializeComponent();
+ _repoDetail = repoDetail;
+ lbl_reponame.Content = _repoDetail.full_name;
+
}
private void btn_close_Click(object sender, RoutedEventArgs e)
diff --git a/DeskHubSharp/ErrorWindow.xaml b/DeskHubSharp/ErrorWindow.xaml
index 881d56b..4e94b9b 100644
--- a/DeskHubSharp/ErrorWindow.xaml
+++ b/DeskHubSharp/ErrorWindow.xaml
@@ -6,7 +6,7 @@
xmlns:local="clr-namespace:DeskHubSharp"
mc:Ignorable="d"
Title="Response - DeskHubSharp" Height="200" Width="300
- ">
+ " ResizeMode="NoResize">
diff --git a/DeskHubSharp/FeedbackWindow.xaml b/DeskHubSharp/FeedbackWindow.xaml
index 47499a6..173bc6f 100644
--- a/DeskHubSharp/FeedbackWindow.xaml
+++ b/DeskHubSharp/FeedbackWindow.xaml
@@ -5,7 +5,7 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:DeskHubSharp"
mc:Ignorable="d"
- Title="Feedback - DeskHubSharp" Height="450" Width="500">
+ Title="Feedback - DeskHubSharp" Height="450" Width="500" ResizeMode="NoResize">
diff --git a/DeskHubSharp/HelpWindow.xaml b/DeskHubSharp/HelpWindow.xaml
index a7fb5ff..01bbc54 100644
--- a/DeskHubSharp/HelpWindow.xaml
+++ b/DeskHubSharp/HelpWindow.xaml
@@ -5,8 +5,8 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:DeskHubSharp"
mc:Ignorable="d"
- Title="HelpWindow" Height="450" Width="400
-">
+ Title="Help - DeskHubSharp" Height="450" Width="400
+" ResizeMode="NoResize">
diff --git a/DeskHubSharp/MainWindow.xaml b/DeskHubSharp/MainWindow.xaml
index 15b44d9..5efccab 100644
--- a/DeskHubSharp/MainWindow.xaml
+++ b/DeskHubSharp/MainWindow.xaml
@@ -1,19 +1,31 @@
-
+ Title="DeskHubSharp" Height="450" Width="805" ResizeMode="NoResize">
-
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/DeskHubSharp/MainWindow.xaml.cs b/DeskHubSharp/MainWindow.xaml.cs
index dc2c2e1..a44c660 100644
--- a/DeskHubSharp/MainWindow.xaml.cs
+++ b/DeskHubSharp/MainWindow.xaml.cs
@@ -12,6 +12,7 @@ using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
+using System.Collections.ObjectModel;
namespace DeskHubSharp
{
@@ -20,16 +21,18 @@ namespace DeskHubSharp
///
public partial class MainWindow : Window
{
+ private ObservableCollection _repoDetail;
+
public MainWindow()
{
InitializeComponent();
-
-
+ //ShowDataGridItems();
}
private void btn_detail_Click(object sender, RoutedEventArgs e)
{
- DetailWindow detail = new DetailWindow();
+ RepoDetail repo = _repoDetail[ListBox.SelectedIndex];
+ DetailWindow detail = new DetailWindow(repo);
detail.ShowDialog();
}
@@ -59,7 +62,30 @@ namespace DeskHubSharp
private void btn_search_Click(object sender, RoutedEventArgs e)
{
SearchWindow search = new SearchWindow();
+ RepoInfo info = new RepoInfo();
+ Owner owner = new Owner();
search.ShowDialog();
+ var stuff = info.GetRepoInfoDataGrid();
+ _repoDetail = RepoList.repoDetail;
+ ListBox.ItemsSource = stuff;
+ txtblk_username.Text = RepoList.userDetail.login;
+ txtblk_url.Text = RepoList.userDetail.html_url;
+ txtblk_bio.Text = RepoList.userDetail.bio;
+ txtblk_email.Text = RepoList.userDetail.blog;
+ txtblk_realname.Text = RepoList.userDetail.name;
+ txtblk_repocount.Text = $"{RepoList.userDetail.login} has {RepoList.userDetail.public_repos} public repositories.";
+ //img_avatar.Source = RepoList.repoDetail[0].owner.avatar_url;
}
+
+ private void DataGrid_SelectionChanged(object sender, SelectionChangedEventArgs e)
+ {
+
+ }
+
+ //public void ShowDataGridItems()
+ //{
+ // DataGrid.ItemsSource = RepoList.repoDetail;
+ //}
+
}
}
diff --git a/DeskHubSharp/Models/License.cs b/DeskHubSharp/Models/License.cs
new file mode 100644
index 0000000..c58e2ed
--- /dev/null
+++ b/DeskHubSharp/Models/License.cs
@@ -0,0 +1,32 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace DeskHubSharp
+{
+ public class License
+ {
+ ///
+ ///
+ ///
+ public string key { get; set; }
+ ///
+ ///
+ ///
+ public string name { get; set; }
+ ///
+ ///
+ ///
+ public string spdx_id { get; set; }
+ ///
+ ///
+ ///
+ public string url { get; set; }
+ ///
+ ///
+ ///
+ public string node_id { get; set; }
+ }
+}
diff --git a/DeskHubSharp/Models/Owner.cs b/DeskHubSharp/Models/Owner.cs
new file mode 100644
index 0000000..176aee5
--- /dev/null
+++ b/DeskHubSharp/Models/Owner.cs
@@ -0,0 +1,84 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace DeskHubSharp
+{
+ public class Owner
+ {
+ ///
+ ///
+ ///
+ public string login { get; set; }
+ ///
+ ///
+ ///
+ public int id { get; set; }
+ ///
+ ///
+ ///
+ public string node_id { get; set; }
+ ///
+ ///
+ ///
+ public string avatar_url { get; set; }
+ ///
+ ///
+ ///
+ public string gravatar_id { get; set; }
+ ///
+ ///
+ ///
+ public string url { get; set; }
+ ///
+ ///
+ ///
+ public string html_url { get; set; }
+ ///
+ ///
+ ///
+ public string followers_url { get; set; }
+ ///
+ ///
+ ///
+ public string following_url { get; set; }
+ ///
+ ///
+ ///
+ public string gists_url { get; set; }
+ ///
+ ///
+ ///
+ public string starred_url { get; set; }
+ ///
+ ///
+ ///
+ public string subscriptions_url { get; set; }
+ ///
+ ///
+ ///
+ public string organizations_url { get; set; }
+ ///
+ ///
+ ///
+ public string repos_url { get; set; }
+ ///
+ ///
+ ///
+ public string events_url { get; set; }
+ ///
+ ///
+ ///
+ public string received_events_url { get; set; }
+ ///
+ ///
+ ///
+ public string type { get; set; }
+ ///
+ ///
+ ///
+ public string site_admin { get; set; }
+ }
+}
diff --git a/DeskHubSharp/Models/RepoDetail.cs b/DeskHubSharp/Models/RepoDetail.cs
index 92d0ef5..6833661 100644
--- a/DeskHubSharp/Models/RepoDetail.cs
+++ b/DeskHubSharp/Models/RepoDetail.cs
@@ -1,397 +1,297 @@
+using DeskHubSharp;
+
namespace DeskHubSharp
{
public class RepoDetail
{
- public class Owner
- {
- ///
- ///
- ///
- public string login { get; set; }
- ///
- ///
- ///
- public int id { get; set; }
- ///
- ///
- ///
- public string node_id { get; set; }
- ///
- ///
- ///
- public string avatar_url { get; set; }
- ///
- ///
- ///
- public string gravatar_id { get; set; }
- ///
- ///
- ///
- public string url { get; set; }
- ///
- ///
- ///
- public string html_url { get; set; }
- ///
- ///
- ///
- public string followers_url { get; set; }
- ///
- ///
- ///
- public string following_url { get; set; }
- ///
- ///
- ///
- public string gists_url { get; set; }
- ///
- ///
- ///
- public string starred_url { get; set; }
- ///
- ///
- ///
- public string subscriptions_url { get; set; }
- ///
- ///
- ///
- public string organizations_url { get; set; }
- ///
- ///
- ///
- public string repos_url { get; set; }
- ///
- ///
- ///
- public string events_url { get; set; }
- ///
- ///
- ///
- public string received_events_url { get; set; }
- ///
- ///
- ///
- public string type { get; set; }
- ///
- ///
- ///
- public string site_admin { get; set; }
- }
+ public Owner Owner { get; set; }
- public class License
- {
- ///
- ///
- ///
- public string key { get; set; }
- ///
- ///
- ///
- public string name { get; set; }
- ///
- ///
- ///
- public string spdx_id { get; set; }
- ///
- ///
- ///
- public string url { get; set; }
- ///
- ///
- ///
- public string node_id { get; set; }
- }
+ public License License { get; set; }
- public class Root
- {
- ///
- ///
- ///
- public int id { get; set; }
- ///
- ///
- ///
- public string node_id { get; set; }
- ///
- ///
- ///
- public string name { get; set; }
- ///
- ///
- ///
- public string full_name { get; set; }
- ///
- ///
- ///
- //public string private { get; set; }
- ///
- ///
- ///
- public Owner owner { get; set; }
- ///
- ///
- ///
- public string html_url { get; set; }
- ///
- ///
- ///
- public string description { get; set; }
- ///
- ///
- ///
- public string fork { get; set; }
- ///
- ///
- ///
- public string url { get; set; }
- ///
- ///
- ///
- public string forks_url { get; set; }
- ///
- ///
- ///
- public string keys_url { get; set; }
- ///
- ///
- ///
- public string collaborators_url { get; set; }
- ///
- ///
- ///
- public string teams_url { get; set; }
- ///
- ///
- ///
- public string hooks_url { get; set; }
- ///
- ///
- ///
- public string issue_events_url { get; set; }
- ///
- ///
- ///
- public string events_url { get; set; }
- ///
- ///
- ///
- public string assignees_url { get; set; }
- ///
- ///
- ///
- public string branches_url { get; set; }
- ///
- ///
- ///
- public string tags_url { get; set; }
- ///
- ///
- ///
- public string blobs_url { get; set; }
- ///
- ///
- ///
- public string git_tags_url { get; set; }
- ///
- ///
- ///
- public string git_refs_url { get; set; }
- ///
- ///
- ///
- public string trees_url { get; set; }
- ///
- ///
- ///
- public string statuses_url { get; set; }
- ///
- ///
- ///
- public string languages_url { get; set; }
- ///
- ///
- ///
- public string stargazers_url { get; set; }
- ///
- ///
- ///
- public string contributors_url { get; set; }
- ///
- ///
- ///
- public string subscribers_url { get; set; }
- ///
- ///
- ///
- public string subscription_url { get; set; }
- ///
- ///
- ///
- public string commits_url { get; set; }
- ///
- ///
- ///
- public string git_commits_url { get; set; }
- ///
- ///
- ///
- public string comments_url { get; set; }
- ///
- ///
- ///
- public string issue_comment_url { get; set; }
- ///
- ///
- ///
- public string contents_url { get; set; }
- ///
- ///
- ///
- public string compare_url { get; set; }
- ///
- ///
- ///
- public string merges_url { get; set; }
- ///
- ///
- ///
- public string archive_url { get; set; }
- ///
- ///
- ///
- public string downloads_url { get; set; }
- ///
- ///
- ///
- public string issues_url { get; set; }
- ///
- ///
- ///
- public string pulls_url { get; set; }
- ///
- ///
- ///
- public string milestones_url { get; set; }
- ///
- ///
- ///
- public string notifications_url { get; set; }
- ///
- ///
- ///
- public string labels_url { get; set; }
- ///
- ///
- ///
- public string releases_url { get; set; }
- ///
- ///
- ///
- public string deployments_url { get; set; }
- ///
- ///
- ///
- public string created_at { get; set; }
- ///
- ///
- ///
- public string updated_at { get; set; }
- ///
- ///
- ///
- public string pushed_at { get; set; }
- ///
- ///
- ///
- public string git_url { get; set; }
- ///
- ///
- ///
- public string ssh_url { get; set; }
- ///
- ///
- ///
- public string clone_url { get; set; }
- ///
- ///
- ///
- public string svn_url { get; set; }
- ///
- ///
- ///
- public string homepage { get; set; }
- ///
- ///
- ///
- public int size { get; set; }
- ///
- ///
- ///
- public int stargazers_count { get; set; }
- ///
- ///
- ///
- public int watchers_count { get; set; }
- ///
- ///
- ///
- public string language { get; set; }
- ///
- ///
- ///
- public string has_issues { get; set; }
- ///
- ///
- ///
- public string has_projects { get; set; }
- ///
- ///
- ///
- public string has_downloads { get; set; }
- ///
- ///
- ///
- public string has_wiki { get; set; }
- ///
- ///
- ///
- public string has_pages { get; set; }
- ///
- ///
- ///
- public int forks_count { get; set; }
- ///
- ///
- ///
- public string mirror_url { get; set; }
- ///
- ///
- ///
- public string archived { get; set; }
- ///
- ///
- ///
- public int open_issues_count { get; set; }
- ///
- ///
- ///
- public License license { get; set; }
- ///
- ///
- ///
- public int forks { get; set; }
- ///
- ///
- ///
- public int open_issues { get; set; }
- ///
- ///
- ///
- public int watchers { get; set; }
- ///
- ///
- ///
- public string default_branch { get; set; }
- }
+ public int id { get; set; }
+ ///
+ ///
+ ///
+ public string node_id { get; set; }
+ ///
+ ///
+ ///
+ public string name { get; set; }
+ ///
+ ///
+ ///
+ public string full_name { get; set; }
+ ///
+ ///
+ ///
+ //public string private { get; set; }
+ ///
+ ///
+ ///
+ public Owner owner { get; set; }
+ ///
+ ///
+ ///
+ public string html_url { get; set; }
+ ///
+ ///
+ ///
+ public string description { get; set; }
+ ///
+ ///
+ ///
+ public string fork { get; set; }
+ ///
+ ///
+ ///
+ public string url { get; set; }
+ ///
+ ///
+ ///
+ public string forks_url { get; set; }
+ ///
+ ///
+ ///
+ public string keys_url { get; set; }
+ ///
+ ///
+ ///
+ public string collaborators_url { get; set; }
+ ///
+ ///
+ ///
+ public string teams_url { get; set; }
+ ///
+ ///
+ ///
+ public string hooks_url { get; set; }
+ ///
+ ///
+ ///
+ public string issue_events_url { get; set; }
+ ///
+ ///
+ ///
+ public string events_url { get; set; }
+ ///
+ ///
+ ///
+ public string assignees_url { get; set; }
+ ///
+ ///
+ ///
+ public string branches_url { get; set; }
+ ///
+ ///
+ ///
+ public string tags_url { get; set; }
+ ///
+ ///
+ ///
+ public string blobs_url { get; set; }
+ ///
+ ///
+ ///
+ public string git_tags_url { get; set; }
+ ///
+ ///
+ ///
+ public string git_refs_url { get; set; }
+ ///
+ ///
+ ///
+ public string trees_url { get; set; }
+ ///
+ ///
+ ///
+ public string statuses_url { get; set; }
+ ///
+ ///
+ ///
+ public string languages_url { get; set; }
+ ///
+ ///
+ ///
+ public string stargazers_url { get; set; }
+ ///
+ ///
+ ///
+ public string contributors_url { get; set; }
+ ///
+ ///
+ ///
+ public string subscribers_url { get; set; }
+ ///
+ ///
+ ///
+ public string subscription_url { get; set; }
+ ///
+ ///
+ ///
+ public string commits_url { get; set; }
+ ///
+ ///
+ ///
+ public string git_commits_url { get; set; }
+ ///
+ ///
+ ///
+ public string comments_url { get; set; }
+ ///
+ ///
+ ///
+ public string issue_comment_url { get; set; }
+ ///
+ ///
+ ///
+ public string contents_url { get; set; }
+ ///
+ ///
+ ///
+ public string compare_url { get; set; }
+ ///
+ ///
+ ///
+ public string merges_url { get; set; }
+ ///
+ ///
+ ///
+ public string archive_url { get; set; }
+ ///
+ ///
+ ///
+ public string downloads_url { get; set; }
+ ///
+ ///
+ ///
+ public string issues_url { get; set; }
+ ///
+ ///
+ ///
+ public string pulls_url { get; set; }
+ ///
+ ///
+ ///
+ public string milestones_url { get; set; }
+ ///
+ ///
+ ///
+ public string notifications_url { get; set; }
+ ///
+ ///
+ ///
+ public string labels_url { get; set; }
+ ///
+ ///
+ ///
+ public string releases_url { get; set; }
+ ///
+ ///
+ ///
+ public string deployments_url { get; set; }
+ ///
+ ///
+ ///
+ public string created_at { get; set; }
+ ///
+ ///
+ ///
+ public string updated_at { get; set; }
+ ///
+ ///
+ ///
+ public string pushed_at { get; set; }
+ ///
+ ///
+ ///
+ public string git_url { get; set; }
+ ///
+ ///
+ ///
+ public string ssh_url { get; set; }
+ ///
+ ///
+ ///
+ public string clone_url { get; set; }
+ ///
+ ///
+ ///
+ public string svn_url { get; set; }
+ ///
+ ///
+ ///
+ public string homepage { get; set; }
+ ///
+ ///
+ ///
+ public int size { get; set; }
+ ///
+ ///
+ ///
+ public int stargazers_count { get; set; }
+ ///
+ ///
+ ///
+ public int watchers_count { get; set; }
+ ///
+ ///
+ ///
+ public string language { get; set; }
+ ///
+ ///
+ ///
+ public string has_issues { get; set; }
+ ///
+ ///
+ ///
+ public string has_projects { get; set; }
+ ///
+ ///
+ ///
+ public string has_downloads { get; set; }
+ ///
+ ///
+ ///
+ public string has_wiki { get; set; }
+ ///
+ ///
+ ///
+ public string has_pages { get; set; }
+ ///
+ ///
+ ///
+ public int forks_count { get; set; }
+ ///
+ ///
+ ///
+ public string mirror_url { get; set; }
+ ///
+ ///
+ ///
+ public string archived { get; set; }
+ ///
+ ///
+ ///
+ public int open_issues_count { get; set; }
+ ///
+ ///
+ ///
+ public License license { get; set; }
+ ///
+ ///
+ ///
+ public int forks { get; set; }
+ ///
+ ///
+ ///
+ public int open_issues { get; set; }
+ ///
+ ///
+ ///
+ public int watchers { get; set; }
+ ///
+ ///
+ ///
+ public string default_branch { get; set; }
}
}
\ No newline at end of file
diff --git a/DeskHubSharp/Models/RepoInfo.cs b/DeskHubSharp/Models/RepoInfo.cs
new file mode 100644
index 0000000..35fe22d
--- /dev/null
+++ b/DeskHubSharp/Models/RepoInfo.cs
@@ -0,0 +1,25 @@
+using System;
+using System.Collections.Generic;
+using System.Collections.ObjectModel;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace DeskHubSharp
+{
+ class RepoInfo
+ {
+ public RepoInfo()
+ {
+
+ }
+
+ public List GetRepoInfoDataGrid()
+ {
+ List stuff = RepoList.repoDetail.Select(x => x.full_name).ToList();
+ //stuff =+ RepoList.repoDetail.Select(x => x.name).ToList();
+ return stuff;
+ }
+
+ }
+}
diff --git a/DeskHubSharp/Models/RepoList.cs b/DeskHubSharp/Models/RepoList.cs
index 3758271..47b841b 100644
--- a/DeskHubSharp/Models/RepoList.cs
+++ b/DeskHubSharp/Models/RepoList.cs
@@ -11,6 +11,8 @@ namespace DeskHubSharp
{
private static ObservableCollection _repoDetail;
+ public static User userDetail { get; set; }
+
public static ObservableCollection repoDetail
{
get { return _repoDetail; }
diff --git a/DeskHubSharp/SearchWindow.xaml b/DeskHubSharp/SearchWindow.xaml
index f432035..455953d 100644
--- a/DeskHubSharp/SearchWindow.xaml
+++ b/DeskHubSharp/SearchWindow.xaml
@@ -5,7 +5,7 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:DeskHubSharp"
mc:Ignorable="d"
- Title="SearchWindow" Height="200" Width="500">
+ Title="Search - DeskHubSharp" Height="200" Width="500" ResizeMode="NoResize">
diff --git a/DeskHubSharp/SearchWindow.xaml.cs b/DeskHubSharp/SearchWindow.xaml.cs
index 9dae51f..07c6509 100644
--- a/DeskHubSharp/SearchWindow.xaml.cs
+++ b/DeskHubSharp/SearchWindow.xaml.cs
@@ -33,6 +33,10 @@ namespace DeskHubSharp
{
Request request = new Request(txtbox_query.Text);
request.SearchRequest();
+ request.UserRequest();
+ //MainWindow main = new MainWindow();
+ //main.ShowDialog();
+ this.Close();
}
}
}
diff --git a/DeskHubSharp/obj/Debug/DeskHubSharp.csproj.CoreCompileInputs.cache b/DeskHubSharp/obj/Debug/DeskHubSharp.csproj.CoreCompileInputs.cache
index 3e0c7da..a8ad283 100644
--- a/DeskHubSharp/obj/Debug/DeskHubSharp.csproj.CoreCompileInputs.cache
+++ b/DeskHubSharp/obj/Debug/DeskHubSharp.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-ac6d87119126ef96a9551362a1832c83be77d6c5
+5719003caa9368fdbade249bbbe98f747b8af257
diff --git a/DeskHubSharp/obj/Debug/DeskHubSharp_MarkupCompile.cache b/DeskHubSharp/obj/Debug/DeskHubSharp_MarkupCompile.cache
index fa17174..8366d71 100644
--- a/DeskHubSharp/obj/Debug/DeskHubSharp_MarkupCompile.cache
+++ b/DeskHubSharp/obj/Debug/DeskHubSharp_MarkupCompile.cache
@@ -12,7 +12,7 @@ DEBUG;TRACE
C:\Users\Wyatt\Desktop\Source\DeskHubSharp\DeskHubSharp\App.xaml
7-86569338
-22-1533856682
+25696652050
20415715258
AboutWindow.xaml;DetailWindow.xaml;ErrorWindow.xaml;FeedbackWindow.xaml;HelpWindow.xaml;MainWindow.xaml;SearchWindow.xaml;
diff --git a/DeskHubSharp/obj/Debug/DeskHubSharp_MarkupCompile.i.cache b/DeskHubSharp/obj/Debug/DeskHubSharp_MarkupCompile.i.cache
index eef41e5..48ed846 100644
--- a/DeskHubSharp/obj/Debug/DeskHubSharp_MarkupCompile.i.cache
+++ b/DeskHubSharp/obj/Debug/DeskHubSharp_MarkupCompile.i.cache
@@ -12,9 +12,9 @@ DEBUG;TRACE
C:\Users\Wyatt\Desktop\Source\DeskHubSharp\DeskHubSharp\App.xaml
7-86569338
-25-65043429
+29498133693
20415715258
AboutWindow.xaml;DetailWindow.xaml;ErrorWindow.xaml;FeedbackWindow.xaml;HelpWindow.xaml;MainWindow.xaml;SearchWindow.xaml;
-True
+False
diff --git a/DeskHubSharp/obj/Debug/MainWindow.g.cs b/DeskHubSharp/obj/Debug/MainWindow.g.cs
index f9edc04..36e95a9 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}" "814C08D5FA0D40972C7641EDC7C65F0E68227ECE"
+#pragma checksum "..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "0EAA4E5953DD54A83EF84C8979256F95CA55AC47"
//------------------------------------------------------------------------------
//
// This code was generated by a tool.
@@ -41,6 +41,14 @@ namespace DeskHubSharp {
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+ #line 1 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal DeskHubSharp.MainWindow window_main;
+
+ #line default
+ #line hidden
+
+
#line 10 "..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button btn_search;
@@ -88,6 +96,102 @@ namespace DeskHubSharp {
#line default
#line hidden
+
+ #line 17 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBlock txtblk_username;
+
+ #line default
+ #line hidden
+
+
+ #line 18 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBlock txtblk_url;
+
+ #line default
+ #line hidden
+
+
+ #line 19 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBlock txtblk_bio;
+
+ #line default
+ #line hidden
+
+
+ #line 20 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBlock txtblk_email;
+
+ #line default
+ #line hidden
+
+
+ #line 21 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBlock txtblk_realname;
+
+ #line default
+ #line hidden
+
+
+ #line 22 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Label lbl_realname;
+
+ #line default
+ #line hidden
+
+
+ #line 23 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Label lbl_username;
+
+ #line default
+ #line hidden
+
+
+ #line 24 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Label lbl_url;
+
+ #line default
+ #line hidden
+
+
+ #line 25 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Label lbl_email;
+
+ #line default
+ #line hidden
+
+
+ #line 26 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Label lbl_bio;
+
+ #line default
+ #line hidden
+
+
+ #line 27 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.ListBox ListBox;
+
+ #line default
+ #line hidden
+
+
+ #line 28 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBlock txtblk_repocount;
+
+ #line default
+ #line hidden
+
private bool _contentLoaded;
///
@@ -119,6 +223,9 @@ namespace DeskHubSharp {
switch (connectionId)
{
case 1:
+ this.window_main = ((DeskHubSharp.MainWindow)(target));
+ return;
+ case 2:
this.btn_search = ((System.Windows.Controls.Button)(target));
#line 10 "..\..\MainWindow.xaml"
@@ -127,7 +234,7 @@ namespace DeskHubSharp {
#line default
#line hidden
return;
- case 2:
+ case 3:
this.btn_detail = ((System.Windows.Controls.Button)(target));
#line 11 "..\..\MainWindow.xaml"
@@ -136,7 +243,7 @@ namespace DeskHubSharp {
#line default
#line hidden
return;
- case 3:
+ case 4:
this.btn_feedback = ((System.Windows.Controls.Button)(target));
#line 12 "..\..\MainWindow.xaml"
@@ -145,7 +252,7 @@ namespace DeskHubSharp {
#line default
#line hidden
return;
- case 4:
+ case 5:
this.btn_help = ((System.Windows.Controls.Button)(target));
#line 13 "..\..\MainWindow.xaml"
@@ -154,7 +261,7 @@ namespace DeskHubSharp {
#line default
#line hidden
return;
- case 5:
+ case 6:
this.btn_about = ((System.Windows.Controls.Button)(target));
#line 14 "..\..\MainWindow.xaml"
@@ -163,7 +270,7 @@ namespace DeskHubSharp {
#line default
#line hidden
return;
- case 6:
+ case 7:
this.btn_exit = ((System.Windows.Controls.Button)(target));
#line 16 "..\..\MainWindow.xaml"
@@ -172,6 +279,42 @@ namespace DeskHubSharp {
#line default
#line hidden
return;
+ case 8:
+ this.txtblk_username = ((System.Windows.Controls.TextBlock)(target));
+ return;
+ case 9:
+ this.txtblk_url = ((System.Windows.Controls.TextBlock)(target));
+ return;
+ case 10:
+ this.txtblk_bio = ((System.Windows.Controls.TextBlock)(target));
+ return;
+ case 11:
+ this.txtblk_email = ((System.Windows.Controls.TextBlock)(target));
+ return;
+ case 12:
+ this.txtblk_realname = ((System.Windows.Controls.TextBlock)(target));
+ return;
+ case 13:
+ this.lbl_realname = ((System.Windows.Controls.Label)(target));
+ return;
+ case 14:
+ this.lbl_username = ((System.Windows.Controls.Label)(target));
+ return;
+ case 15:
+ this.lbl_url = ((System.Windows.Controls.Label)(target));
+ return;
+ case 16:
+ this.lbl_email = ((System.Windows.Controls.Label)(target));
+ return;
+ case 17:
+ this.lbl_bio = ((System.Windows.Controls.Label)(target));
+ return;
+ case 18:
+ this.ListBox = ((System.Windows.Controls.ListBox)(target));
+ return;
+ case 19:
+ this.txtblk_repocount = ((System.Windows.Controls.TextBlock)(target));
+ return;
}
this._contentLoaded = true;
}
diff --git a/DeskHubSharp/obj/Debug/MainWindow.g.i.cs b/DeskHubSharp/obj/Debug/MainWindow.g.i.cs
index f9edc04..36e95a9 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}" "814C08D5FA0D40972C7641EDC7C65F0E68227ECE"
+#pragma checksum "..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "0EAA4E5953DD54A83EF84C8979256F95CA55AC47"
//------------------------------------------------------------------------------
//
// This code was generated by a tool.
@@ -41,6 +41,14 @@ namespace DeskHubSharp {
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+ #line 1 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal DeskHubSharp.MainWindow window_main;
+
+ #line default
+ #line hidden
+
+
#line 10 "..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button btn_search;
@@ -88,6 +96,102 @@ namespace DeskHubSharp {
#line default
#line hidden
+
+ #line 17 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBlock txtblk_username;
+
+ #line default
+ #line hidden
+
+
+ #line 18 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBlock txtblk_url;
+
+ #line default
+ #line hidden
+
+
+ #line 19 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBlock txtblk_bio;
+
+ #line default
+ #line hidden
+
+
+ #line 20 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBlock txtblk_email;
+
+ #line default
+ #line hidden
+
+
+ #line 21 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBlock txtblk_realname;
+
+ #line default
+ #line hidden
+
+
+ #line 22 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Label lbl_realname;
+
+ #line default
+ #line hidden
+
+
+ #line 23 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Label lbl_username;
+
+ #line default
+ #line hidden
+
+
+ #line 24 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Label lbl_url;
+
+ #line default
+ #line hidden
+
+
+ #line 25 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Label lbl_email;
+
+ #line default
+ #line hidden
+
+
+ #line 26 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Label lbl_bio;
+
+ #line default
+ #line hidden
+
+
+ #line 27 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.ListBox ListBox;
+
+ #line default
+ #line hidden
+
+
+ #line 28 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBlock txtblk_repocount;
+
+ #line default
+ #line hidden
+
private bool _contentLoaded;
///
@@ -119,6 +223,9 @@ namespace DeskHubSharp {
switch (connectionId)
{
case 1:
+ this.window_main = ((DeskHubSharp.MainWindow)(target));
+ return;
+ case 2:
this.btn_search = ((System.Windows.Controls.Button)(target));
#line 10 "..\..\MainWindow.xaml"
@@ -127,7 +234,7 @@ namespace DeskHubSharp {
#line default
#line hidden
return;
- case 2:
+ case 3:
this.btn_detail = ((System.Windows.Controls.Button)(target));
#line 11 "..\..\MainWindow.xaml"
@@ -136,7 +243,7 @@ namespace DeskHubSharp {
#line default
#line hidden
return;
- case 3:
+ case 4:
this.btn_feedback = ((System.Windows.Controls.Button)(target));
#line 12 "..\..\MainWindow.xaml"
@@ -145,7 +252,7 @@ namespace DeskHubSharp {
#line default
#line hidden
return;
- case 4:
+ case 5:
this.btn_help = ((System.Windows.Controls.Button)(target));
#line 13 "..\..\MainWindow.xaml"
@@ -154,7 +261,7 @@ namespace DeskHubSharp {
#line default
#line hidden
return;
- case 5:
+ case 6:
this.btn_about = ((System.Windows.Controls.Button)(target));
#line 14 "..\..\MainWindow.xaml"
@@ -163,7 +270,7 @@ namespace DeskHubSharp {
#line default
#line hidden
return;
- case 6:
+ case 7:
this.btn_exit = ((System.Windows.Controls.Button)(target));
#line 16 "..\..\MainWindow.xaml"
@@ -172,6 +279,42 @@ namespace DeskHubSharp {
#line default
#line hidden
return;
+ case 8:
+ this.txtblk_username = ((System.Windows.Controls.TextBlock)(target));
+ return;
+ case 9:
+ this.txtblk_url = ((System.Windows.Controls.TextBlock)(target));
+ return;
+ case 10:
+ this.txtblk_bio = ((System.Windows.Controls.TextBlock)(target));
+ return;
+ case 11:
+ this.txtblk_email = ((System.Windows.Controls.TextBlock)(target));
+ return;
+ case 12:
+ this.txtblk_realname = ((System.Windows.Controls.TextBlock)(target));
+ return;
+ case 13:
+ this.lbl_realname = ((System.Windows.Controls.Label)(target));
+ return;
+ case 14:
+ this.lbl_username = ((System.Windows.Controls.Label)(target));
+ return;
+ case 15:
+ this.lbl_url = ((System.Windows.Controls.Label)(target));
+ return;
+ case 16:
+ this.lbl_email = ((System.Windows.Controls.Label)(target));
+ return;
+ case 17:
+ this.lbl_bio = ((System.Windows.Controls.Label)(target));
+ return;
+ case 18:
+ this.ListBox = ((System.Windows.Controls.ListBox)(target));
+ return;
+ case 19:
+ this.txtblk_repocount = ((System.Windows.Controls.TextBlock)(target));
+ return;
}
this._contentLoaded = true;
}