Windows.UI.Xaml.TargetPropertyPath
June 22, 2022 ยท View on GitHub
-description
Represents the path to a property on a target element.
-remarks
TargetPropertyPath is used to create the simplified dotted Setter.Target syntax in XAML.
-examples
In this example, myPanel.Orientation is a TargetPropertyPath where myPanel is the Target and Orientation is the Property.
<Setter Target="myPanel.Orientation" Value="Horizontal"/>