Form ...Build your own MVVM... I have the following code that lets us have typesafe NotifyOfPropertyChange calls:...public void NotifyOfPropertyChange<TProperty>(Expression<Func<TProperty>> property)
{
var lambda = (LambdaExpression)property;
Memb...