12 references to Value
Microsoft.Maui.Controls (12)
RadioButton\RadioButton.cs (7)
59 /// <summary>Bindable property for <see cref="Value"/>.</summary> 61 BindableProperty.Create(nameof(Value), typeof(object), typeof(RadioButton), null, 426 if (!IsChecked || selected == this || string.IsNullOrEmpty(GroupName) || GroupName != selected.GroupName || (Value is not null && object.Equals(Value, args.Value)) || !MatchesScope(args)) 436 if (IsChecked || string.IsNullOrEmpty(GroupName) || GroupName != args.GroupName || !object.Equals(Value, args.Value) || !MatchesScope(args)) 669 var debugText = DebuggerDisplayHelpers.GetDebugText(nameof(Value), Value, nameof(IsChecked), IsChecked);
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))