September 2012
Intermediate to advanced
464 pages
10h 55m
English
An attached property can be used to somehow "enhance" or extend another object. In the case outlined in the previous recipe, Using an attached property, an element was placed at exact coordinates within a Canvas using the attached Canvas.Left and Canvas.Top properties. An attached property is a powerful tool for extending the behavior of any object without the need to inherit from the type of the object. In this task, we'll see this in action.
Make sure Visual Studio is up and running.
We'll create an attached property that would rotate any element it's attached to:
CH01.CustomAttached.MainWindow.xaml. Add some elements in a Canvas (replace the default ...