simple question for you fellas.
I have an image inside a Canvas, with a Canvas.Left property i want to change
programaticly.
How do i do that?
simple question for you fellas. I have an image inside a Canvas, with a
Share
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.
Call
Canvas.SetLeft(theImage, newValue);This is the standard means of using Attached Properties from Code. When implementing an attached property (such as Canvas.Left), it’s standard to include a static method that is named
SetPropertyNamefor a given attached property namedPropertyName.