Skip to content

Instantly share code, notes, and snippets.

@pictos
Created July 20, 2017 00:45
Show Gist options
  • Save pictos/deb4da3dc9eca0ef5cf5232d6a3c7eb8 to your computer and use it in GitHub Desktop.
Save pictos/deb4da3dc9eca0ef5cf5232d6a3c7eb8 to your computer and use it in GitHub Desktop.
BaseViewModel
using System.Collections.Generic;
using System.ComponentModel;
using System.Runtime.CompilerServices;
namespace DeleteList.ViewModel
{
public class BaseViewModel : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
protected bool SetProperty<T>(ref T storage, T value, [CallerMemberName] string propertyName = null)
{
if (EqualityComparer<T>.Default.Equals(storage, value))
return false;
storage = value;
OnPropertyChanged(propertyName);
return true;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment