mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-29 08:04:59 +00:00
31 lines
785 B
C#
31 lines
785 B
C#
using Avalonia.Controls;
|
|
using Avalonia.Input;
|
|
using Avalonia.Interactivity;
|
|
|
|
namespace SourceGit.Views
|
|
{
|
|
public partial class AssumeUnchangedManager : Window
|
|
{
|
|
public AssumeUnchangedManager()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void BeginMoveWindow(object sender, PointerPressedEventArgs e)
|
|
{
|
|
BeginMoveDrag(e);
|
|
}
|
|
|
|
private void CloseWindow(object sender, RoutedEventArgs e)
|
|
{
|
|
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;
|
|
}
|
|
}
|
|
}
|