1 interface inheriting from IListNode
Microsoft.Maui.Controls.Xaml (1)
XamlNode.cs (1)
25 interface IElementNode : INode, IListNode
1 implementation of IListNode
Microsoft.Maui.Controls.Xaml (1)
XamlNode.cs (1)
250 class ListNode : BaseNode, IListNode, IValueNode
6 references to IListNode
Microsoft.Maui.Controls.Build.Tasks (3)
CompiledConverters\BindablePropertyConverter.cs (1)
36 var parent = node.Parent?.Parent as IElementNode ?? (node.Parent?.Parent as IListNode)?.Parent as IElementNode;
SetNamescopesAndRegisterNamesVisitor.cs (1)
96 static bool IsVisualStateGroupList(ElementNode node) => node != null && node.XmlType.Name == "VisualStateGroup" && node.Parent is IListNode;
SetPropertiesVisitor.cs (1)
235 if (!(parentNode is IListNode parentList))
Microsoft.Maui.Controls.Xaml (3)
ApplyPropertiesVisitor.cs (2)
239 var parentList = parentNode as IListNode;
NamescopingVisitor.cs (1)
44 static bool IsVisualStateGroupList(ElementNode node) => node?.XmlType.Name == "VisualStateGroup" && node?.Parent is IListNode;