You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 1, 2024. It is now read-only.
A RadioButton needs more than just a Text property. The Text could be in any language if localization is used and would not match a value stored in your database. A Value property provides a consistent value that could be stored and retrieved from the database. Every other UI framework has a Value property available. (HTML, WPF, WinForms, etc).
The Value should be bindable so that you can point all radio buttons in a group to a MVVM property and have the grouping select which one to show as selected.
This is still an experimental control so it should be a safe time to add it.
API Changes
Add a Value property to the RadioButton class.
Grouping should be done on the Value, not the Text.