1 回答
TA贡献1770条经验 获得超3个赞
不幸的是,Xamarin 不能使用 WPF 的 ResourceDictionary。
您可以创建和使用 Xamarin 的 ResourceDictionary,如下所示。
<Application ...>
<Application.Resources>
<ResourceDictionary>
<Color x:Key="PageBackgroundColor">Yellow</Color>
<Color x:Key="HeadingTextColor">Black</Color>
<Color x:Key="NormalTextColor">Blue</Color>
<Style x:Key="LabelPageHeadingStyle" TargetType="Label">
<Setter Property="FontAttributes" Value="Bold" />
<Setter Property="HorizontalOptions" Value="Center" />
<Setter Property="TextColor" Value="{StaticResource HeadingTextColor}" />
</Style>
</ResourceDictionary>
</Application.Resources>
</Application>
- 1 回答
- 0 关注
- 122 浏览
添加回答
举报