SelectedValue is the *actual value* associated with the choice, not the ChoiceSettingValue representing the choice

This commit is contained in:
Michael Becker 2021-07-24 17:20:30 -04:00
parent d98cda9001
commit 3fda1ae6d1
No known key found for this signature in database
GPG Key ID: 98C333A81F18C22C

View File

@ -77,7 +77,7 @@ namespace MBS.Framework.Settings
}
public ChoiceSettingValue.ChoiceSettingValueCollection ValidValues { get; } = new ChoiceSettingValue.ChoiceSettingValueCollection();
public ChoiceSettingValue SelectedValue { get; set; } = null;
public object SelectedValue { get; set; } = null;
public bool RequireSelectionFromList { get; set; } = true;
public bool MultipleSelect { get; set; } = false;