tags:

views:

52

answers:

1

I am using a 3rd party resource dictionary and it is conflicting with another usercontrol that I need. How do I exclude this usecontrol from picking up the default resource dictionary?

Thanks

Dave

+1  A: 

dont know if you can explicity exclude it but you could create your own resource dictionary and create a style for your control within it.

Reference the style specifically with a key and use that key for you user control. Should override the default resource dictionary. You may have to merge resource dictionaries into a shared resource.

Crippeoblade