How to: Adorn the Children of a Panel
This example shows how to programmatically bind an adorner to the children of a specified Panel.
To bind an adorner to the children of a Panel, follow these steps:
-
Declare a new AdornerLayer object and call the static GetAdornerLayer method to find an adorner layer for the element whose children are to be adorned.
-
Enumerate through the children of the parent element and call the Add method to bind an adorner to each child element.
The following example binds a SimpleCircleAdorner (shown above) to the children of a StackPanel named myStackPanel.
Note
|
|---|
|
Using Extensible Application Markup Language (XAML) to bind an adorner to another element is currently not supported. |
Note