try navigationservices

This commit is contained in:
Natlinux
2022-11-26 17:58:31 +01:00
parent 34e648dc8a
commit 873d130aaa
13 changed files with 165 additions and 17 deletions

View File

@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Apollon.WPF.ViewModels
{
public class ArchersViewModel : ViewModelBase
{
}
}

View File

@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Apollon.WPF.ViewModels
{
public class ClassesViewModel : ViewModelBase
{
}
}

View File

@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Apollon.WPF.ViewModels
{
public class GroupsViewModel : ViewModelBase
{
}
}

View File

@@ -1,4 +1,5 @@
using System;
using Apollon.WPF.Commands;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
@@ -9,8 +10,10 @@ namespace Apollon.WPF.ViewModels
{
public class NavBarTournamentDetailsViewModel : ViewModelBase
{
public ICommand NavigateNameListCommand { get;}
public ICommand GroupsCommand { get;}
public ICommand NavigateArchersCommand { get;}
public ICommand NavigateGroupsCommand { get;}
public ICommand NavigateClassesCommand { get;}
}
}