5 instantiations of VisualStateGroupList
Microsoft.Maui.Controls (5)
RadioButton\RadioButton.cs (1)
577
VisualStateGroupList visualStateGroups = new
VisualStateGroupList
();
Shell\BaseShellItem.cs (1)
386
var groups = new
VisualStateGroupList
();
TitleBar\TitleBar.cs (1)
332
VisualStateGroupList visualStateGroups = new
VisualStateGroupList
();
VisualStateManager.cs (2)
28
defaultValueCreator: bindable => new
VisualStateGroupList
(true) { VisualElement = (VisualElement)bindable });
694
var clone = new
VisualStateGroupList
();
16 references to VisualStateGroupList
Microsoft.Maui.Controls (15)
BindablePropertyConverter.cs (2)
142
if (parents[3] is not
VisualStateGroupList
)
143
throw new XamlParseException($"Expected {nameof(
VisualStateGroupList
)} but found {parents[3]}.", lineInfo);
RadioButton\RadioButton.cs (1)
577
VisualStateGroupList
visualStateGroups = new VisualStateGroupList();
Shell\BaseShellItem.cs (1)
386
var
groups = new VisualStateGroupList();
TitleBar\TitleBar.cs (1)
332
VisualStateGroupList
visualStateGroups = new VisualStateGroupList();
VisualStateManager.cs (10)
26
BindableProperty.CreateAttached("VisualStateGroups", typeof(
VisualStateGroupList
), typeof(VisualElement),
32
if (oldValue is
VisualStateGroupList
{ VisualElement: { } oldElement } oldVisualStateGroupList)
49
((
VisualStateGroupList
)newValue).VisualElement = visualElement;
61
public static void SetVisualStateGroups(VisualElement visualElement,
VisualStateGroupList
value)
74
var
groups = (
VisualStateGroupList
)vsgSpecificityValue.Value;
130
if (GetVisualStateGroups(element) is
VisualStateGroupList
vsgl)
349
public override bool Equals(object obj) => Equals(obj as
VisualStateGroupList
);
350
bool Equals(
VisualStateGroupList
other)
694
var
clone = new VisualStateGroupList();
Microsoft.Maui.Controls.Build.Tasks (1)
CompiledConverters\BindablePropertyConverter.cs (1)
95
&& (target.Parent as IElementNode)?.XmlType.Name == nameof(
VisualStateGroupList
)))