2021-06-17 18:26:19 -07:00
|
|
|
using System.Windows;
|
|
|
|
|
|
|
|
namespace SourceGit.Views.Controls {
|
|
|
|
/// <summary>
|
|
|
|
/// 项目使用的窗体基类
|
|
|
|
/// </summary>
|
|
|
|
public class Window : System.Windows.Window {
|
|
|
|
|
2021-06-21 19:09:50 -07:00
|
|
|
public static readonly DependencyProperty IsMaximizedProperty = DependencyProperty.Register(
|
|
|
|
"IsMaximized",
|
|
|
|
typeof(bool),
|
|
|
|
typeof(Window),
|
|
|
|
new PropertyMetadata(false, OnIsMaximizedChanged));
|
|
|
|
|
|
|
|
public bool IsMaximized {
|
|
|
|
get { return (bool)GetValue(IsMaximizedProperty); }
|
|
|
|
set { SetValue(IsMaximizedProperty, value); }
|
|
|
|
}
|
|
|
|
|
2021-06-17 18:26:19 -07:00
|
|
|
public Window() {
|
2021-07-20 01:26:10 -07:00
|
|
|
Style = FindResource("Style.Window") as Style;
|
2021-06-17 18:26:19 -07:00
|
|
|
|
|
|
|
StateChanged += (_, __) => {
|
|
|
|
var content = Content as FrameworkElement;
|
|
|
|
|
|
|
|
if (WindowState == WindowState.Maximized) {
|
2021-06-21 19:09:50 -07:00
|
|
|
if (!IsMaximized) IsMaximized = true;
|
2021-06-17 18:26:19 -07:00
|
|
|
content.Margin = new Thickness((SystemParameters.MaximizedPrimaryScreenWidth - SystemParameters.WorkArea.Width) / 2);
|
|
|
|
} else {
|
2021-06-21 19:09:50 -07:00
|
|
|
if (IsMaximized) IsMaximized = false;
|
2021-06-17 18:26:19 -07:00
|
|
|
content.Margin = new Thickness(0);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2021-06-21 19:09:50 -07:00
|
|
|
|
|
|
|
private static void OnIsMaximizedChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) {
|
|
|
|
Window w = d as Window;
|
|
|
|
if (w != null) {
|
|
|
|
if (w.IsMaximized) {
|
|
|
|
SystemCommands.MaximizeWindow(w);
|
2021-06-21 20:42:47 -07:00
|
|
|
} else if (w.WindowState != WindowState.Minimized) {
|
2021-06-21 19:09:50 -07:00
|
|
|
SystemCommands.RestoreWindow(w);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-06-17 18:26:19 -07:00
|
|
|
}
|
|
|
|
}
|