WP8 学习 在APP.XAML中加入Resources

<Application.Resources>  
        <local:LocalizedStrings xmlns:local="clr-namespace:test1" x:Key="LocalizedStrings"/>  
        <Style x:Name="myBt" TargetType="Button">  
            <Setter Property="FontFamily" Value="Verdana"></Setter>  
            <Setter Property="FontSize" Value="30"></Setter>  
            <Setter Property="Background" Value="CornflowerBlue"/>  
        </Style>  
    </Application.Resources>  

则在应用的时候, 类似代码如下

<Button Style="{Saticsource myBt}"/>  
原文地址:https://www.cnblogs.com/NEIL-X/p/3974464.html