tags:

views:

109

answers:

2
A: 

I would look into adorners and the adorner layer.

Muad'Dib
It looks like with this solution I should write a class that derives from Adorner, and implement the logic there. Why is it better than a user control? Isn't there another way to do it using xaml only?
Andy
you could create a user control, and you could do this xaml only--probably take a LOT more code though.
Muad'Dib
A: 

Another way to accomplish this would be to create a custom/user control that derives from contentcontrol. Use a contentcontrol to vary the content and design the control to look however you want.

mdm20