Nu fungerar hanteringen kring navigation
This commit is contained in:
@ -0,0 +1,21 @@
|
||||
using Common.Library;
|
||||
|
||||
namespace GreadyPoang.ViewModelLayer;
|
||||
|
||||
public class AppShellViewModel : ViewModelBase
|
||||
{
|
||||
|
||||
private bool _roundRounningVisible = true;
|
||||
|
||||
public bool RoundRunningVisible
|
||||
{
|
||||
get { return _roundRounningVisible; }
|
||||
set
|
||||
{
|
||||
_roundRounningVisible = value;
|
||||
RaisePropertyChanged(nameof(RoundRunningVisible));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user