file dialog
This commit is contained in:
22
SolutionParityChecker.App/Views/MainWindow.axaml.cs
Normal file
22
SolutionParityChecker.App/Views/MainWindow.axaml.cs
Normal 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";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user