From a40f67d898b149c40d45e86e2d2d8a729c893a60 Mon Sep 17 00:00:00 2001 From: Michael Johne Date: Tue, 31 Oct 2023 23:54:28 +0100 Subject: [PATCH] Delete SettingsForm.cs (#26) --- SettingsForm.cs | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 SettingsForm.cs diff --git a/SettingsForm.cs b/SettingsForm.cs deleted file mode 100644 index 177f280..0000000 --- a/SettingsForm.cs +++ /dev/null @@ -1,23 +0,0 @@ -using System.Windows.Forms.VisualStyles; - -namespace Numeric_List_Generator -{ - public partial class SettingsForm : Form - { - public SettingsForm() => InitializeComponent(); - - private void CheckedListBoxStyle_SelectedIndexChanged(object sender, EventArgs e) - { - Application.VisualStyleState = checkedListBoxStyle.GetItemChecked(index: 0) ? VisualStyleState.NoneEnabled : VisualStyleState.ClientAndNonClientAreasEnabled; - Invalidate(invalidateChildren: true); - } - - private void ButtonApply_Click(object sender, EventArgs e) - { - } - - private void ButtonCancel_Click(object sender, EventArgs e) - { - } - } -}