changed datagrid to listbox

This commit is contained in:
Wyatt Miller
2018-12-01 19:09:48 -05:00
parent b8411b2153
commit 894d6c02dc
15 changed files with 108 additions and 102 deletions

View File

@ -14,14 +14,11 @@ namespace DeskHubSharp
}
public ObservableCollection<string> GetRepoInfoDataGrid()
public List<string> GetRepoInfoDataGrid()
{
ObservableCollection<string> repoStuff = new ObservableCollection<string>();
RepoDetail repo = new RepoDetail();
repoStuff.Add(Convert.ToString(RepoList.repoDetail.Select(x => x.name)));
//repoStuff.Add(repo.url);
return repoStuff;
List<string> stuff = RepoList.repoDetail.Select(x => x.full_name).ToList();
//stuff =+ RepoList.repoDetail.Select(x => x.name).ToList();
return stuff;
}
}