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.
56 lines
1.7 KiB
56 lines
1.7 KiB
using Modèle;
|
|
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.Navigation;
|
|
using System.Windows.Shapes;
|
|
|
|
namespace WpfApp1
|
|
{
|
|
/// <summary>
|
|
/// Logique d'interaction pour userControlDescription.xaml
|
|
/// </summary>
|
|
public partial class userControlDescription : UserControl
|
|
{
|
|
public userControlDescription()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void exit_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
((MainWindow)System.Windows.Application.Current.MainWindow).ContentControlSwapAcc();
|
|
}
|
|
|
|
private void edit_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
((MainWindow)System.Windows.Application.Current.MainWindow).ContentControlSwapEdit();
|
|
}
|
|
|
|
|
|
public Requin requin { get; set; } //UpdateUI(requin);
|
|
|
|
public void UpdateUI(Requin requin)
|
|
{
|
|
string url = "/Images/" + requin.StatutCons.ToString() + ".png";
|
|
nameReq.Text = requin.Nom;
|
|
sciName.Text = requin.NomSci;
|
|
desc.Text = requin.Description;
|
|
vid.Source = new Uri(requin.Video);
|
|
photo.Source = new BitmapImage(new Uri(requin.Photo, UriKind.Relative));
|
|
funFact.Text = requin.FunFact;
|
|
consPic.Source = new BitmapImage(new Uri(url, UriKind.Relative));
|
|
cartePic.Source = new BitmapImage(new Uri(requin.PhotoCarte, UriKind.Relative));
|
|
}
|
|
}
|
|
}
|