sourcegit/src/Views/CaptionButtons.axaml.cs

42 lines
1.1 KiB
C#
Raw Normal View History

using Avalonia.Controls;
using Avalonia.Interactivity;
using Avalonia.VisualTree;
namespace SourceGit.Views
{
public partial class CaptionButtons : UserControl
{
public CaptionButtons()
{
InitializeComponent();
}
2024-08-06 00:12:44 -07:00
private void MinimizeWindow(object _, RoutedEventArgs e)
{
var window = this.FindAncestorOfType<Window>();
if (window != null)
window.WindowState = WindowState.Minimized;
2024-08-06 00:12:44 -07:00
e.Handled = true;
}
2024-08-06 00:12:44 -07:00
private void MaximizeOrRestoreWindow(object _, RoutedEventArgs e)
{
var window = this.FindAncestorOfType<Window>();
if (window != null)
window.WindowState = window.WindowState == WindowState.Maximized ? WindowState.Normal : WindowState.Maximized;
2024-08-06 00:12:44 -07:00
e.Handled = true;
}
2024-08-06 00:12:44 -07:00
private void CloseWindow(object _, RoutedEventArgs e)
{
var window = this.FindAncestorOfType<Window>();
if (window != null)
window.Close();
2024-08-06 00:12:44 -07:00
e.Handled = true;
}
}
}