Skip to content

Instantly share code, notes, and snippets.

View resnyanskiy's full-sized avatar

Alexander resnyanskiy

View GitHub Profile
@resnyanskiy
resnyanskiy / ViewModelBase
Created September 25, 2013 07:00
Base types for MVVM pattern in WPF
using System;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.Windows.Input;
namespace WpfApp.ViewModels
{
class ViewModelBase : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;