4 implementations of TargetProperty
Microsoft.Maui.Controls (1)
StyleSheets\StyleSheetServiceProvider.cs (1)
33 public object TargetProperty { get; set; }
Microsoft.Maui.Controls.Xaml (3)
XamlServiceProvider.cs (3)
94 public object TargetProperty { get; internal set; } = null; 134 object IProvideValueTarget.TargetProperty => targetProperty; 164 object IProvideValueTarget.TargetProperty => targetProperty;
8 references to TargetProperty
Microsoft.Maui.Controls.Xaml (8)
MarkupExtensions\AppThemeBindingExtension.cs (2)
68 bp = valueProvider.TargetProperty as BindableProperty; 69 pi = valueProvider.TargetProperty as PropertyInfo;
MarkupExtensions\OnIdiomExtension.cs (2)
55 bp = valueProvider.TargetProperty as BindableProperty; 56 pi = valueProvider.TargetProperty as PropertyInfo;
MarkupExtensions\OnPlatformExtension.cs (2)
65 bp = valueProvider.TargetProperty as BindableProperty; 66 pi = valueProvider.TargetProperty as PropertyInfo;
MarkupExtensions\StaticResourceExtension.cs (2)
31 Diagnostics.ResourceDictionaryDiagnostics.OnStaticResourceResolved(resourceDictionary, Key, valueProvider.TargetObject, valueProvider.TargetProperty); 33 return CastTo(resource, valueProvider.TargetProperty);