file dialog

This commit is contained in:
Matthew Parker
2023-08-30 00:07:55 +10:00
parent 7be89cf2e0
commit aefb12e688
14 changed files with 190 additions and 62 deletions

View File

@@ -0,0 +1,22 @@
using Avalonia.Controls;
using Avalonia.Interactivity;
namespace SolutionParityChecker.App.Views;
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private void LoadSolutionFolder(object? sender, RoutedEventArgs e)
{
SolutionFolderPath.Text = "Solution folder path";
}
private void LoadSolutionFile(object? sender, RoutedEventArgs e)
{
SolutionFilePath.Text = "Solution file path";
}
}