I am developing an application, having a window container consisting of child user controls. I have a MyStyles.xaml document which is being used by individual user controls and their children at the control level.
That is, I am declaring the styles inside of each user control, and applying it to individual controls using
<Combobox Style = {StaticResource MyStylesComboBox} ...
How can i make this implicit, by defining the style for the user controls at the container-window level, so that the style cascades down the hierarchy?
Thanks in advance.