I'm going to introduce View State feature in the existing MVVM WPF Application. The objective is to be able to Save and Load (restore) particular state of a control.
The question is more about design and best solution from system flexibility/maintability perspectives.
Current infrastructure:
public abstract class ViewModelBase
{
protected ViewModelBase(...)
{
}
}
// and few more very the same ViewModel classes for different control types
public sealed class GridViewModel : ViewModelBase
{
protected GridViewModel(...)
: base(...)
{
}
}
I'm introduced IViewState interface so each specific ViewModel could provide own implementation like GridViewState class and going to put it in ViewModel infrastructure in following way: (Idea is to pass type of ViewState as generic parameter)
public abstract class ViewModelBase<TViewState>
where TViewState : class, IViewState
{
protected ViewModelBase(...)
{
}
public TViewState ViewState { ... }
}
- Does it a good idea to attach View State feature to ViewModel?
- Does it a good solution to introduce tied relation between specific ViewModel typa and ViewState through the generic Type parameter like
class GridViewModel<GridViewState>? - Where and why better to define such methods like
LoadState() / SaveState(),IViewStateitself orViewModelBase? - Are there another design solutions?