1
0
mirror of synced 2024-09-24 11:38:22 +02:00
Switch-Toolbox/Toolbox/GUI/GithubUpdateDialog.cs
2019-05-15 16:36:22 -04:00

43 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Switch_Toolbox.Library.Forms;
using Octokit;
namespace Toolbox
{
public partial class GithubUpdateDialog : STForm
{
public GithubUpdateDialog()
{
InitializeComponent();
}
private List<GitHubCommit> ActiveCommitList;
public void LoadCommits(List<GitHubCommit> Commits)
{
ActiveCommitList = Commits;
foreach (var commit in Commits)
{
listViewCustom1.Items.Add(commit.Commit.Message).SubItems.Add(commit.Commit.Author.Date.LocalDateTime.ToString());
}
}
private void listViewCustom1_SelectedIndexChanged(object sender, EventArgs e)
{
if (listViewCustom1.SelectedIndices.Count > 0)
{
int index = listViewCustom1.SelectedIndices[0];
stTextBox1.Text = ActiveCommitList[index].Commit.Message;
}
}
}
}