Loading

wp7 -- Style

<Application.Resources>
<Style x:Key="textBlockStyle" TargetType="TextBlock">
<Setter Property="Foreground" Value="Red" />
</Style>
</Application.Resources>

<StackPanel>
<TextBlock Style="{StaticResource textBlockStyle}">
This text is red!
</TextBlock>
<local:AnotherPage />
</StackPanel>

<StackPanel>
<TextBlock Style="{StaticResource textBlockStyle}">
This text is red too!
</TextBlock>
</StackPanel>

posted @ 2013-05-30 10:58  androllen  阅读(115)  评论(0编辑  收藏  举报