mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-27 21:27:19 -08:00
36 lines
1,015 B
C#
36 lines
1,015 B
C#
using System;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Interactivity;
|
|
using Avalonia.Platform.Storage;
|
|
|
|
namespace SourceGit.Views
|
|
{
|
|
public partial class AddWorktree : UserControl
|
|
{
|
|
public AddWorktree()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private async void SelectLocation(object _, RoutedEventArgs e)
|
|
{
|
|
var toplevel = TopLevel.GetTopLevel(this);
|
|
if (toplevel == null)
|
|
return;
|
|
|
|
var options = new FolderPickerOpenOptions() { AllowMultiple = false };
|
|
try
|
|
{
|
|
var selected = await toplevel.StorageProvider.OpenFolderPickerAsync(options);
|
|
if (selected.Count == 1)
|
|
TxtLocation.Text = selected[0].Path.LocalPath;
|
|
}
|
|
catch (Exception exception)
|
|
{
|
|
App.RaiseException(string.Empty, $"Failed to select location: {exception.Message}");
|
|
}
|
|
|
|
e.Handled = true;
|
|
}
|
|
}
|
|
}
|