I am using Silverlight 4 and trying to share some common styles (colors, brushes).
My take was to put them into a \"Common.xaml\" Resource Dictionary and then use it in all othe
Another interesting note on this thread is that SL only keeps ONE copy of a style if it is found in two different dictionaries. The last one wins. In other words, if you have two different styles both with the same key, the first one is discarded when the second one loads.