I have an attached property. Can I pass an additional parameter in xaml via binding, and handle it in my attached property.
Thank you!
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.
Attached properties do not handle things, they can have one value, if you need more than one value change its datatype to something more complex like a class or struct. Similarily a binding also only outputs one value, independent from what you pass in as parameter.