mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
26 lines
870 B
C#
Executable file
26 lines
870 B
C#
Executable file
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Reactive.Joins;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace MiniMvvm
|
|
{
|
|
public class ViewModelBase : INotifyPropertyChanged
|
|
{
|
|
public event PropertyChangedEventHandler PropertyChanged;
|
|
protected bool RaiseAndSetIfChanged<T>(ref T field, T value, [CallerMemberName] string propertyName = null)
|
|
{
|
|
if (!EqualityComparer<T>.Default.Equals(field, value))
|
|
{
|
|
field = value;
|
|
RaisePropertyChanged(propertyName);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
|
|
protected void RaisePropertyChanged([CallerMemberName] string propertyName = null)
|
|
=> PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
|
|
}
|
|
}
|