PropertyPath Constructor (String, String, FuncDependencyObject, DependencyObject, ActionDependencyObject, Object, FuncDependencyObject, Object) |
Initializes a new Instance of the PropertyPath class based on methods to access the property from a DependencyObject.
Namespace: Windows.UI.XamlAssembly: CSharpXamlForHtml5 (in CSharpXamlForHtml5.dll) Version: 1.0.0.0
Syntax public PropertyPath(
string path,
string dependencyPropertyName,
Func<DependencyObject, DependencyObject> accessPropertyContainer,
Action<DependencyObject, Object> propertySetVisualState,
Func<DependencyObject, Object> propertyGetVisualState
)
Parameters
- path
- Type: SystemString
[Missing <param name="path"/> documentation for "M:Windows.UI.Xaml.PropertyPath.#ctor(System.String,System.String,System.Func{Windows.UI.Xaml.DependencyObject,Windows.UI.Xaml.DependencyObject},System.Action{Windows.UI.Xaml.DependencyObject,System.Object},System.Func{Windows.UI.Xaml.DependencyObject,System.Object})"]
- dependencyPropertyName
- Type: SystemString
The name of the property (consists only of the last part of the path we would put in the XAML). - accessPropertyContainer
- Type: SystemFuncDependencyObject, DependencyObject
The function that will access the object on which the property is from the DependencyObject put in its parameters(corresponds to the path in XAML without the last property). - propertySetVisualState
- Type: SystemActionDependencyObject, Object
The function that sets the VisualState value on the given element. - propertyGetVisualState
- Type: SystemFuncDependencyObject, Object
The function that gets the VisualState value on the given element.
See Also