mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
32 lines
795 B
C#
32 lines
795 B
C#
using Avalonia.Controls;
|
|
using Avalonia.Input;
|
|
using Avalonia.Interactivity;
|
|
|
|
namespace SourceGit.Views
|
|
{
|
|
public partial class AssumeUnchangedManager : ChromelessWindow
|
|
{
|
|
public AssumeUnchangedManager()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void BeginMoveWindow(object _, PointerPressedEventArgs e)
|
|
{
|
|
BeginMoveDrag(e);
|
|
}
|
|
|
|
private void CloseWindow(object _1, RoutedEventArgs _2)
|
|
{
|
|
Close();
|
|
}
|
|
|
|
private void OnRemoveButtonClicked(object sender, RoutedEventArgs e)
|
|
{
|
|
if (DataContext is ViewModels.AssumeUnchangedManager vm && sender is Button button)
|
|
vm.Remove(button.DataContext as string);
|
|
|
|
e.Handled = true;
|
|
}
|
|
}
|
|
}
|