You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
KinectExercise_FrancoBroda/PenaltyMaster3000/View/StartView.xaml.cs

35 lines
886 B

using PenaltyMaster3000.Navigation;
using PenaltyMaster3000.ViewModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace PenaltyMaster3000.View
{
/// <summary>
/// Logique d'interaction pour StartView.xaml
/// </summary>
public partial class StartView : Window
{
public StartVM StartVM { get; set; }
public StartView()
{
var navigationService = new NavigationService(this);
StartVM = new StartVM(navigationService);
InitializeComponent();
DataContext = StartVM;
}
}
}