I have a 2 silverlight projects
- Dashboard (the main app)
- Dashboard.Controls (user controls)
I have a UserControl in Dashboard.Controls called header which has a grid that references a style
<Grid Background="{StaticResource HeaderBackground}" Height="55">...</Grid>
I had declared this style in the Dashboard App.xaml (via a resource dictionary) but this isn;t visible to the control.
My question is where do I create the ResourceDictionary that holds HeaderBAckground so it is accessible to the UserControl?