views:

26

answers:

1

Normally, to set style using C#, I write,

btn.Style = (Style)FindResource(_styleName);

But what to do, if style is defined inside main 'ResourceDictionary', and button is inside some 'UserControl'. Also, I need to write script inside 'UserControl' only.

To make it more clear - There is a button inside UserControl which should take style defined in main ResourceDictionary. It should happen on some event of usercontrol, so I need to write CS in usercontrol.xaml.cs. It is quite easy if style is defined in usercontrol.xaml itself.

A: 

if it is inside the Application resources

SolidColorBrush res = (SolidColorBrush) Application.Current.FindResource("YellowSolidBrush");

Kishore Kumar