New to MVVM so please excuse my ignorance.
I THINK i\'m using it right but I find my ViewModel has too many of these:
RaisePropertyChanged(\"SomeProp
You could use PostSharp's NotifyPropertyChanged attribute. Then all you have to do is to put an attribute on the class and that's it. E.g.:
[NotifyPropertyChanged] public class MyClass { public string MyProperty { get; set; } }