combobox not ready

This commit is contained in:
Natlinux81
2022-08-17 20:13:43 +02:00
parent 6cf060628f
commit 5f93b56b8e
5 changed files with 31 additions and 7 deletions

View File

@@ -39,16 +39,16 @@ namespace Apollon.WPF.ViewModels
}
}
private string _category;
private string _competition;
public string Competition
{
get
{
return _category;
return _competition;
}
set
{
_category = value;
_competition = value;
OnPropertyChanged(nameof(Competition));
}
}