Add Generate button

This commit is contained in:
2021-12-04 15:27:04 +01:00
parent 6df7c2885b
commit 52b7e10da1
4 changed files with 79 additions and 7 deletions

View File

@@ -8,7 +8,7 @@ using System.Threading.Tasks;
namespace ExeLauncher.GUI
{
public record ApplicationModel : INotifyPropertyChanged
public class ApplicationModel : INotifyPropertyChanged
{
private int _number = 1;
public int Number
@@ -70,7 +70,7 @@ namespace ExeLauncher.GUI
}
}
public event PropertyChangedEventHandler? PropertyChanged;
public event PropertyChangedEventHandler PropertyChanged;
private void NotifyPropertyChanged([CallerMemberName] string propertyName = "")
{