mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-26 21:17:20 -08:00
e19d025572
* move resources and styles for macOS caption button to `CaptionButtonsMacOS` because it is never used by others and should not been changed * add `IsCloseButtonOnly` property to `CaptionButtons` and `CaptionButtonsMacOS` and replace the controls in windows
35 lines
949 B
C#
35 lines
949 B
C#
using Avalonia.Controls;
|
|
using Avalonia.Input;
|
|
using Avalonia.Interactivity;
|
|
|
|
namespace SourceGit.Views
|
|
{
|
|
public partial class LFSLocks : ChromelessWindow
|
|
{
|
|
public LFSLocks()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void BeginMoveWindow(object _, PointerPressedEventArgs e)
|
|
{
|
|
BeginMoveDrag(e);
|
|
}
|
|
|
|
private void OnUnlockButtonClicked(object sender, RoutedEventArgs e)
|
|
{
|
|
if (DataContext is ViewModels.LFSLocks vm && sender is Button button)
|
|
vm.Unlock(button.DataContext as Models.LFSLock, false);
|
|
|
|
e.Handled = true;
|
|
}
|
|
|
|
private void OnForceUnlockButtonClicked(object sender, RoutedEventArgs e)
|
|
{
|
|
if (DataContext is ViewModels.LFSLocks vm && sender is Button button)
|
|
vm.Unlock(button.DataContext as Models.LFSLock, true);
|
|
|
|
e.Handled = true;
|
|
}
|
|
}
|
|
}
|