33 lines
930 B
C#
33 lines
930 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.ComponentModel;
|
|
using ProjetTheAlone.Classes;
|
|
using System.Collections.ObjectModel;
|
|
|
|
namespace ProjetTheAlone.Model
|
|
{
|
|
public class RepaModel : INotifyPropertyChanged
|
|
{
|
|
private ObservableCollection<C_T_plat> listPlat = new ObservableCollection<C_T_plat>();
|
|
|
|
public ObservableCollection<C_T_plat> ListPlat { get => listPlat; set { listPlat = value; OnPropertyChanged("ListPlat"); } }
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged;
|
|
protected void OnPropertyChanged(string name)
|
|
{
|
|
PropertyChangedEventHandler handler = PropertyChanged;
|
|
if (handler != null)
|
|
{
|
|
handler(this, new PropertyChangedEventArgs(name));
|
|
}
|
|
}
|
|
public RepaModel()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|