mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-26 03:40:45 +08:00
42 lines
1.1 KiB
C#
42 lines
1.1 KiB
C#
using Avalonia.Controls;
|
|
using Avalonia.Interactivity;
|
|
using Avalonia.VisualTree;
|
|
|
|
namespace SourceGit.Views
|
|
{
|
|
public partial class CaptionButtonsMacOS : UserControl
|
|
{
|
|
public CaptionButtonsMacOS()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void MinimizeWindow(object _1, RoutedEventArgs _2)
|
|
{
|
|
var window = this.FindAncestorOfType<Window>();
|
|
if (window != null)
|
|
{
|
|
window.WindowState = WindowState.Minimized;
|
|
}
|
|
}
|
|
|
|
private void MaximizeOrRestoreWindow(object _1, RoutedEventArgs _2)
|
|
{
|
|
var window = this.FindAncestorOfType<Window>();
|
|
if (window != null)
|
|
{
|
|
window.WindowState = window.WindowState == WindowState.Maximized ? WindowState.Normal : WindowState.Maximized;
|
|
}
|
|
}
|
|
|
|
private void CloseWindow(object _1, RoutedEventArgs _2)
|
|
{
|
|
var window = this.FindAncestorOfType<Window>();
|
|
if (window != null)
|
|
{
|
|
window.Close();
|
|
}
|
|
}
|
|
}
|
|
}
|