FN-V binding

This commit is contained in:
Serge
2024-03-11 17:30:15 +01:00
parent 22a84a647c
commit 94c20050f6
4 changed files with 270 additions and 201 deletions

View File

@@ -344,6 +344,16 @@ namespace GHelper
}
public void CycleVisualMode()
{
if (comboVisual.SelectedIndex < comboVisual.Items.Count - 1)
comboVisual.SelectedIndex += 1;
else
comboVisual.SelectedIndex = 0;
Program.toast.RunToast(comboVisual.GetItemText(comboVisual.SelectedItem), ToastIcon.BrightnessUp);
}
private async void ButtonInstallColorProfile_Click(object? sender, EventArgs e)
{
await ColorProfileHelper.InstallProfile();