- added about window

- discord: async queue
This commit is contained in:
slothdpal
2025-09-19 20:18:33 +03:00
parent 41d8a0a3e2
commit 9989c4d58c
9 changed files with 2188 additions and 92 deletions

View File

@@ -13,6 +13,8 @@ using System.Data;
using static System.Net.Mime.MediaTypeNames;
using RelaunchProcess;
using System.Timers;
using System.Threading.Tasks;
using System.Runtime.CompilerServices;
namespace Process_Auto_Relaunch
@@ -478,5 +480,12 @@ namespace Process_Auto_Relaunch
discordSettings.ShowDialog(this);
discordSettings.Dispose();
}
private void AboutProgram_Click(object sender, EventArgs e)
{
AboutBox aboutBox = new AboutBox();
aboutBox.ShowDialog(this);
aboutBox.Dispose();
}
}
}