-api-id | -api-type |
---|---|
T:Microsoft.UI.Xaml.TargetPropertyPath |
winrt class |
Represents the path to a property on a target element.
TargetPropertyPath
is used to create the simplified dotted Setter.Target syntax in XAML.
In this example, myPanel.Orientation
is a TargetPropertyPath
where myPanel
is the Target and Orientation
is the Property.
<Setter Target="myPanel.Orientation" Value="Horizontal"/>