2024-02-05 23:08:37 -08:00
|
|
|
using Avalonia.Controls;
|
|
|
|
using Avalonia.Interactivity;
|
|
|
|
using Avalonia.Platform.Storage;
|
|
|
|
|
2024-03-17 18:37:06 -07:00
|
|
|
namespace SourceGit.Views
|
|
|
|
{
|
|
|
|
public partial class Apply : UserControl
|
|
|
|
{
|
|
|
|
public Apply()
|
|
|
|
{
|
2024-02-05 23:08:37 -08:00
|
|
|
InitializeComponent();
|
|
|
|
}
|
|
|
|
|
2024-03-17 18:37:06 -07:00
|
|
|
private async void SelectPatchFile(object sender, RoutedEventArgs e)
|
|
|
|
{
|
2024-02-05 23:08:37 -08:00
|
|
|
var topLevel = TopLevel.GetTopLevel(this);
|
2024-03-31 01:54:29 -07:00
|
|
|
if (topLevel == null)
|
|
|
|
return;
|
2024-02-05 23:08:37 -08:00
|
|
|
|
2024-03-17 18:37:06 -07:00
|
|
|
var options = new FilePickerOpenOptions() { AllowMultiple = false, FileTypeFilter = [new FilePickerFileType("Patch File") { Patterns = ["*.patch"] }] };
|
2024-02-05 23:08:37 -08:00
|
|
|
var selected = await topLevel.StorageProvider.OpenFilePickerAsync(options);
|
2024-03-17 18:37:06 -07:00
|
|
|
if (selected.Count == 1)
|
|
|
|
{
|
2024-02-05 23:08:37 -08:00
|
|
|
txtPatchFile.Text = selected[0].Path.LocalPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
e.Handled = true;
|
|
|
|
}
|
|
|
|
}
|
2024-03-31 01:54:29 -07:00
|
|
|
}
|