Suppose we have a generic View model like this:
public class MyViewModel : INotifyPropertyChanged where T : Class1 { private T _objectModel; pub
You could create a class that inherits from your generic ViewModel and use that
public class PersonViewModel : ViewModel
XAML: