Example #1
0
 public SettingsReloadMessage(object sender, SettingsElementType elementType, string id, string valueTitle)
     : base(sender)
 {
     ElementType = elementType;
     Id          = id;
     ValueTitle  = valueTitle;
 }
Example #2
0
 public SettingsSwitchVm(string title, SettingsElementType elementType) : base(title, elementType)
 {
 }
Example #3
0
 public SettingsItemVm(string title, SettingsElementType elementType)
 {
     Title       = title;
     ElementType = elementType;
 }
 public SettingsPickerVm(string title, SettingsElementType elementType) : base(title, elementType)
 {
 }