You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
configurable effects: rendering mode, shadows, theme instead ofb using only system theme, aliasing mode
fix hand cursor was stuck when changing photo with single click
new photos extensions by default
debug WPF info by 4 clicks on version number (graphics info)
version upgrade
#pragma warning disable WPF0001// Type is for evaluation purposes only and is subject to change or removal in future updates. Suppress this diagnostic to proceed.
42
+
Application.Current.ThemeMode=ThemeMode.Dark;
43
+
#pragma warning restore WPF0001// Type is for evaluation purposes only and is subject to change or removal in future updates. Suppress this diagnostic to proceed.
44
+
}
45
+
elseif(_config.ThemeMode==1)
46
+
{
47
+
#pragma warning disable WPF0001// Type is for evaluation purposes only and is subject to change or removal in future updates. Suppress this diagnostic to proceed.
48
+
Application.Current.ThemeMode=ThemeMode.Light;
49
+
#pragma warning restore WPF0001// Type is for evaluation purposes only and is subject to change or removal in future updates. Suppress this diagnostic to proceed.
0 commit comments