5 references to Trigger
Microsoft.Maui.Controls (2)
BindablePropertyConverter.cs (2)
54
else if (parentValuesProvider.TargetObject is
Trigger
)
55
type = (parentValuesProvider.TargetObject as
Trigger
).TargetType;
Microsoft.Maui.Controls.Build.Tasks (2)
CompiledConverters\BindablePropertyConverter.cs (2)
42
(parent.XmlType.Name == nameof(
Trigger
)
54
else if ((node.Parent as ElementNode)?.XmlType.NamespaceUri == XamlParser.MauiUri && (node.Parent as ElementNode)?.XmlType.Name == nameof(
Trigger
))
Microsoft.Maui.Controls.Xaml (1)
SimplifyTypeExtensionVisitor.cs (1)
52
static bool IsTrigger(XmlType type) => type.Name == nameof(
Trigger
) && type.NamespaceUri == XamlParser.MauiUri;