Xamarin.Form预览器:渲染控件时发生异常

问题描述 投票:1回答:2

我是Xamarin的新手。我想了解<Style>标签。我有问题当我开始在App.xaml文件上添加标签时,会出现警告消息。我不知道我犯了什么错误。希望你们能帮助我解决这个问题。谢谢你提前。

错误信息

enter image description here

App.xaml中

<?xml version="1.0" encoding="utf-8" ?>
<Application xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             x:Class="TravelRecordApp.App">
    <Application.Resources>
        <!-- Application resource dictionary -->
        <ResourceDictionary>
            <Color x:Key="blueColor">#1E90FF</Color>
            <Color x:Key="whiteColor">#FFFFFF</Color>
            <Style>
                <Setter Property="BackgroundColor" Value="{StaticResource blueColor}" />
                <Setter Property="TextColor" Value="{StaticResource whiteColor}"/>
            </Style>
        </ResourceDictionary>

    </Application.Resources>
</Application>
c# xaml xamarin styles
2个回答
© www.soinside.com 2019 - 2024. All rights reserved.