From aaaa6b45859e74c791f35e18c220118a54a345ad Mon Sep 17 00:00:00 2001 From: Sergey Chebotar Date: Fri, 17 Dec 2021 09:07:34 +0300 Subject: Create simple base form for settings window --- Source/Settings/SettingsForm.cs | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 Source/Settings/SettingsForm.cs (limited to 'Source/Settings/SettingsForm.cs') diff --git a/Source/Settings/SettingsForm.cs b/Source/Settings/SettingsForm.cs new file mode 100644 index 0000000..b87ac5c --- /dev/null +++ b/Source/Settings/SettingsForm.cs @@ -0,0 +1,32 @@ +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; + +namespace RehauSku.Settings +{ + public partial class SettingsForm : Form + { + public SettingsForm() + { + InitializeComponent(); + + FormClosing += (sender, eventArgs) => + { + MessageBox.Show("ok"); + }; + + + } + + private void button1_Click(object sender, EventArgs e) + { + + } + } +} -- cgit v1.2.3