10 references to Value
Microsoft.Maui.Controls (10)
RadioButton\RadioButton.cs (5)
56 /// <summary>Bindable property for <see cref="Value"/>.</summary> 58 BindableProperty.Create(nameof(Value), typeof(object), typeof(RadioButton), null, 423 if (!IsChecked || selected == this || string.IsNullOrEmpty(GroupName) || GroupName != selected.GroupName || (Value is not null && object.Equals(Value, args.Value)) || !MatchesScope(args)) 433 if (IsChecked || string.IsNullOrEmpty(GroupName) || GroupName != args.GroupName || !object.Equals(Value, args.Value) || !MatchesScope(args))
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))