Skip to content

Instantly share code, notes, and snippets.

@NathanGloyn
Created August 8, 2012 06:30
Show Gist options
  • Save NathanGloyn/3292833 to your computer and use it in GitHub Desktop.
Save NathanGloyn/3292833 to your computer and use it in GitHub Desktop.
Code failing to property weave
using System.ComponentModel;
namespace PropertyWeave
{
public class StockTicker : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
public string MessageBoxMessage { get; set; }
public bool RefreshComplete { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment