some more work

This commit is contained in:
2024-09-25 12:08:38 +02:00
parent bc6c483ba6
commit 2f9d60f1a8
26 changed files with 2434 additions and 60 deletions

View File

@@ -0,0 +1,29 @@
using ModpackUpdater.Manager;
using Telerik.WinControls.UI;
namespace ModpackUpdater.Apps.Manager.Features.Tools;
public partial class UpdatesCollectorUi : RadForm
{
private readonly ModpackFactory factory = new();
public UpdatesCollectorUi()
{
InitializeComponent();
}
private void UpdatesCollectorUi_Shown(object sender, EventArgs e)
{
}
private void RadListView_Updates_SelectedItemChanged(object sender, EventArgs e)
{
}
private void RadListControl_VersionTags_SelectedValueChanged(object sender, EventArgs e)
{
}
}