38 lines
967 B
C#
38 lines
967 B
C#
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;
|
|
using ProjetTheAlone.Classes;
|
|
using ProjetTheAlone.Gestion;
|
|
using ProjetTheAlone.Config;
|
|
|
|
namespace ProjetTheAlone.View
|
|
{
|
|
/// <summary>
|
|
/// Logique d'interaction pour FicClassement.xaml
|
|
/// </summary>
|
|
public partial class FicClassement : Window
|
|
{
|
|
public FicClassement(C_T_event _EventSelect)
|
|
{
|
|
C_T_event EventSelect = _EventSelect;
|
|
InitializeComponent();
|
|
DataContext = new ViewModel.VM_Classement(EventSelect);
|
|
}
|
|
|
|
private void btnQuitter_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
Close();
|
|
}
|
|
}
|
|
}
|