1 write to GroupName
Microsoft.Maui.Controls (1)
RadioButton\RadioButtonGroupController.cs (1)
124 radioButton.GroupName = name;
13 references to GroupName
Microsoft.Maui.Controls (13)
RadioButton\RadioButton.cs (8)
67 /// <summary>Bindable property for <see cref="GroupName"/>.</summary> 69 nameof(GroupName), typeof(string), typeof(RadioButton), null, 379 if (!IsChecked || string.IsNullOrEmpty(GroupName)) 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 (2)
57 string groupName = radioButton.GroupName; 81 if (rb != null && rb != radioButton && string.IsNullOrEmpty(rb.GroupName) && (rb.IsChecked == true))
RadioButton\RadioButtonGroupController.cs (3)
47 if (selected.GroupName != _groupName || !MatchesScope(args)) 67 if (radioButton.GroupName != _groupName || !MatchesScope(args)) 120 var currentName = radioButton.GroupName;