Natively, Jounce supports two types of Region containers, the ContentControl and the ItemsControl. You can add your own containers by inheriting from RegionAdapterBase. In this post, I will show you how you can build a RegionAdapter using the Accordion control (from the Silverlight Toolkit) as a container:
Step 1. Add a class that inherits from RegionAdapterBase<Accordion> and implement the required ActivateControl override.
Jounce.Regions.Adapters.RegionAdapterBase<System.Windows.Controls.Accordion>
[RegionAdapterFor(typeof(Accordion))] Go to the complete details ...