mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2024-11-24 12:03:02 +00:00
25 lines
752 B
C#
25 lines
752 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Linq;
|
|||
|
using System.Runtime.CompilerServices;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace UWUVCI_AIO_WPF
|
|||
|
{
|
|||
|
public class BaseModel : INotifyPropertyChanged
|
|||
|
{
|
|||
|
// Declare the PropertyChanged event
|
|||
|
public event PropertyChangedEventHandler PropertyChanged;
|
|||
|
|
|||
|
// OnPropertyChanged will raise the PropertyChanged event passing the
|
|||
|
// source property that is being updated.
|
|||
|
protected void OnPropertyChanged([CallerMemberName]string propertyName = "")
|
|||
|
{
|
|||
|
if (this.PropertyChanged != null)
|
|||
|
{
|
|||
|
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|