0

Is there a way to globally apply the Sketch Styles to all controls within my SketchFlow application in Expression Blend 4 without having to apply the Style="{DynamicResource Foo-Sketch}" property to each and every control manually?

Generally spoken, I would like to make those styles defined in SketchStyles.xaml implicit.

bitbonk
  • 48,890
  • 37
  • 186
  • 278

1 Answers1

2

You can probably apply the styles implicitly like this:

<UserControl.Resources>
    <Style BasedOn="{StaticResource Button-Sketch}" TargetType="Button"/>
</UserControl.Resources>

You would have to do this for each control type you want to use an implicit style for.

Chuck Hays
  • 1,194
  • 1
  • 6
  • 7