Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

1 Answer

up vote 5 down vote accepted

You say that you have a "style" in your App.xaml, but looking at the code you have pasted the Grid will be looking for a Brush. If it is indeed a Style that you want to reference, you should change the xaml to:

<Grid Style="{StaticResource HeaderBackground}" Height="55">...</Grid>

Apart from that, what you are trying to do should work. Post more info if this does not help.

share|improve this answer
Perfect - My propblem was I was trying to set Bakcground rather than Style! Thanks. – James Hughes Feb 8 '10 at 12:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.