new PropertyPath("(RotateTransform.Angle)")
why do we need the brackets around RotateTransform.Angle? And why sometimes we don’t need brackets around it?
Cheers
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
According to this: MSDN Binding.Path the brackets indicate that the path refers to an attached property. Since attached-properties are not declared on the dependency-object itself, the binding might need an indicator to distinct dependency-properties from attached properties.
/edit: sorry, gave you a german link, see my update.