我使用Prism Template Pack创建了一个应用程序来创建一个新的Xamarin.Forms项目。但不幸的是我无法设计我的应用程序。
的App.xaml
<?xml version="1.0" encoding="utf-8" ?>
<prism:PrismApplication xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:prism="clr-namespace:Prism.Unity;assembly=Prism.Unity.Forms"
x:Class="StyleThisOneAlso.App">
<Application.Resources>
<!-- Application resource dictionary -->
<ResourceDictionary>
<Style TargetType="Label">
<Setter Property="TextColor" Value="Green"/>
</Style>
</ResourceDictionary>
</Application.Resources>
</prism:PrismApplication>
但这样做并不会使标签变成绿色。
答案 0 :(得分:0)
您正在使用Visual Studio 2017吗?我只是从2015年切换到2017年,全球风格似乎不再起作用。