Hi,
Looking at SharpDevelop source code I found this button declaration:
<Button Style="{x:Static core:GlobalStyles.ButtonStyle}"
Content="{core:Localize StartPage.StartMenu.NewCombineButton}"
Click="newSolutionClick" Margin="8,0,0,0" />
my problem is the style declaration: Style="{x:Static core:GlobalStyles.ButtonStyle}"
it prevents me from externally apply custom button style
if I remove the style declaration, the external theme (stored in .xaml) file works just fine.
my question: is there a way to override these specific style declarations?
Thanks a lot.
Adi Barda