-
Notifications
You must be signed in to change notification settings - Fork 2
/
WindowSettings.xaml.cs
65 lines (56 loc) · 1.89 KB
/
WindowSettings.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
using System.Windows;
using System.Windows.Input;
namespace AlphaClicker
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class WindowSettings: Window
{
public WindowSettings()
{
InitializeComponent();
}
private void SetSettings()
{
AlphaRegistry.SetWindowSettings(((MainWindow)this.Owner).Topmost);
}
private void windowSettings_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
DragMove();
}
private void closeButton_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
Close();
}
private void windowSettings_Loaded(object sender, RoutedEventArgs e)
{
darkThemeSwitch.IsChecked = ThemesController.CurrentTheme == ThemesController.ThemeTypes.Dark;
topMostSwitch.IsChecked = ((MainWindow)this.Owner).Topmost;
}
private void windowSettings_Closing(object sender, System.ComponentModel.CancelEventArgs e)
{
((MainWindow)this.Owner).keyEnabled = true;
}
private void darkThemeSwitch_Checked(object sender, RoutedEventArgs e)
{
ThemesController.SetTheme(ThemesController.ThemeTypes.Dark);
SetSettings();
}
private void darkThemeSwitch_Unchecked(object sender, RoutedEventArgs e)
{
ThemesController.SetTheme(ThemesController.ThemeTypes.Light);
SetSettings();
}
private void topMostSwitch_Checked(object sender, RoutedEventArgs e)
{
((MainWindow)this.Owner).Topmost = true;
SetSettings();
}
private void topMostSwitch_Unchecked(object sender, RoutedEventArgs e)
{
((MainWindow)this.Owner).Topmost = false;
SetSettings();
}
}
}