49 lines
1.1 KiB
C#
49 lines
1.1 KiB
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;
|
|
|
|
namespace ProjetTheAlone.View
|
|
{
|
|
/// <summary>
|
|
/// Logique d'interaction pour FicEvenementEncode.xaml
|
|
/// </summary>
|
|
public partial class FicEvenementEncode : Window
|
|
{
|
|
public FicEvenementEncode()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void btnBénéficiaire_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
FicBeneficiaireEncode w = new FicBeneficiaireEncode();
|
|
w.ShowDialog();
|
|
}
|
|
|
|
private void btnQuitter_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
Close();
|
|
}
|
|
|
|
private void btnNewTypeEvent_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
private void btnNewLieu_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|