문제

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.

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top