using System.Drawing; using System.Windows.Forms; using StarfaceOutlookSync.Models; namespace StarfaceOutlookSync.UI { public class SettingsForm : Form { private CheckBox _chkStartMinimized; private Button _btnSave, _btnCancel; private readonly UserSettings _settings; public SettingsForm() { _settings = UserSettings.Load(); InitializeComponent(); } private void InitializeComponent() { Text = "Einstellungen"; Size = new Size(350, 180); FormBorderStyle = FormBorderStyle.FixedDialog; MaximizeBox = false; MinimizeBox = false; StartPosition = FormStartPosition.CenterParent; Font = new Font("Segoe UI", 9); _chkStartMinimized = new CheckBox { Text = "Minimiert starten (nur im System Tray)", Left = 20, Top = 24, AutoSize = true, Checked = _settings.StartMinimized }; _btnSave = new Button { Text = "Speichern", Left = 80, Top = 100, Width = 85, Height = 28, DialogResult = DialogResult.None }; _btnSave.Click += (s, e) => Save(); _btnCancel = new Button { Text = "Abbrechen", Left = 174, Top = 100, Width = 85, Height = 28, DialogResult = DialogResult.Cancel }; Controls.AddRange(new Control[] { _chkStartMinimized, _btnSave, _btnCancel }); AcceptButton = _btnSave; CancelButton = _btnCancel; } private void Save() { _settings.StartMinimized = _chkStartMinimized.Checked; _settings.Save(); DialogResult = DialogResult.OK; Close(); } } }