Windows应用商店应用:样式TargetType =“页面”未应用

时间:2014-03-16 16:29:25

标签: xaml windows-store-apps

我尝试创建一个样式以应用于任何页面(如主样式)以在角落中包含一点水印,但这种样式不起作用。

<Style x:Key="WatermarkPageStyle" TargetType="Page">
    <Setter Property="Template" >
        <Setter.Value>
            <ControlTemplate TargetType="Page">
                <Grid>                          
                    <ContentPresenter/>
                    <TextBlock TextAlignment="Right" VerticalAlignment="Bottom" FontSize="25" Foreground="Blue" Text="Watermark"/>
                </Grid>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

有什么问题?有解决方法吗?

1 个答案:

答案 0 :(得分:1)

Microsoft employee says这是一个已知问题,您应该在本地设置这些值。