11 references to Value
Microsoft.Maui.Controls (11)
RadioButton\RadioButton.cs (6)
58
/// <summary>Bindable property for <see cref="
Value
"/>.</summary>
60
BindableProperty.Create(nameof(
Value
), typeof(object), typeof(RadioButton), null,
425
if (!IsChecked || selected == this || string.IsNullOrEmpty(GroupName) || GroupName != selected.GroupName || (
Value
is not null && object.Equals(
Value
, args.Value)) || !MatchesScope(args))
435
if (IsChecked || string.IsNullOrEmpty(GroupName) || GroupName != args.GroupName || !object.Equals(
Value
, args.Value) || !MatchesScope(args))
677
return $"IsChecked = {IsChecked}, Value = {
Value
}, {base.GetDebuggerDisplay()}";
RadioButton\RadioButtonGroup.cs (1)
65
new RadioButtonGroupSelectionChanged(scope, radioButton.
Value
));
RadioButton\RadioButtonGroupController.cs (4)
52
_layout.SetValue(RadioButtonGroup.SelectedValueProperty, selected.
Value
);
72
_layout.SetValue(RadioButtonGroup.SelectedValueProperty, radioButton.
Value
);
104
_layout.SetValue(RadioButtonGroup.SelectedValueProperty, radioButton.
Value
);
107
if (object.Equals(radioButton.
Value
, this.SelectedValue))