This commit is contained in:
Matthew Parker
2023-08-30 01:08:03 +10:00
parent aefb12e688
commit c343612873
6 changed files with 68 additions and 53 deletions

View File

@@ -1,5 +1,6 @@
using Avalonia.Controls;
using Avalonia.Interactivity;
using SolutionParityChecker.App.ViewModels;
namespace SolutionParityChecker.App.Views;
@@ -9,14 +10,4 @@ public partial class MainWindow : Window
{
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";
}
}