added find statements for errorwindow

This commit is contained in:
Wyatt J. Miller 2022-06-30 17:49:47 -04:00
parent d2f735b2ef
commit a3be695c76
2 changed files with 12 additions and 14 deletions

View File

@ -1,6 +1,7 @@
using System;
using System.Collections.Generic;
using System.Linq;
using Avalonia.Controls;
using DeskHubSharpRevised.Models;
namespace DeskHubSharpRevised.BLL;
@ -13,22 +14,25 @@ class RepoInfo
}
/// <summary>
/// Return a list for the list box
/// Returns a list for the list box
/// </summary>
/// <returns></returns>
/// <returns>A list of strings</returns>
public List<string> GetRepoInfoList()
{
List<string> stuff = new List<string>();
try
{
stuff = RequestList.repoDetail.Select(x => x.full_name).ToList();
stuff = RequestList.repoDetail.Select(r => r.full_name).ToList();
}
catch (Exception)
{
ErrorWindow err = new ErrorWindow();
err.txtblk_error.Text = "We couldn't gather any data. Does the user exist?";
err.btn_error_close.Content = "FUCK!";
err.txtblk_error = err.Find<TextBlock>("txtblk_error");
err.txtblk_error.Text = "Did you search a user? Try that first.";
err.btn_error_close = err.Find<Button>("btn_error");
err.btn_error_close.Content = "Close";
err.lbl_title = err.Find<Label>("lbl_title");
err.lbl_title.Content = "Oops!";
err.Show();
}
@ -37,12 +41,12 @@ class RepoInfo
}
/// <summary>
/// Return a list for the combo box
/// Returns a list for the combo box
/// </summary>
/// <returns></returns>
/// <returns>A list of strings</returns>
public List<string> GetBranchNameComboBox()
{
List<string> stuff = RequestList.branchDetail.Select(x => x.name).ToList();
List<string> stuff = RequestList.branchDetail.Select(b => b.name).ToList();
return stuff;
}
}

View File

@ -1,6 +0,0 @@
namespace DeskHubSharpRevised;
public class SearchWindowViewModel
{
}