Base view model — usually only to load stuff to display from serialized data. Could save data too, it depends on creation way. For more information look at Constructors region.
Inheritance: FirstFloor.ModernUI.Presentation.NotifyPropertyChanged
Example #1
0
 /// <summary>
 /// Create a new AssistsViewModel which will load data from serialized string, but won’t
 /// save any changes if they will occur.
 /// </summary>
 /// <param name="serializedData"></param>
 /// <returns></returns>
 public static BaseAssistsViewModel CreateFixed([NotNull] string serializedData) {
     var result = new BaseAssistsViewModel(DefaultKey, true);
     result.Saveable.Reset();
     result.Saveable.FromSerializedString(serializedData);
     return result;
 }