<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}"/>
时间: 2024-10-10 15:38:25