Xamarin.forms Xamarin Android(VS2017)错误与样式

Xamarin.forms Xamarin Android(VS2017)错误与样式,xamarin.forms,Xamarin.forms,我正在使用Visual Studio 2017 RC。我开始使用它是因为在Visual Studio 2015中部署Android应用程序令人沮丧 我假设我的应用程序运行良好。在页面中,我为BoxView使用了一种样式。样式在App.xaml中定义为: <?xml version="1.0" encoding="UTF-8" ?> <Application x:Class="myApp.App" xmlns="http://xamarin.com/schemas

我正在使用
Visual Studio 2017 RC
。我开始使用它是因为在Visual Studio 2015中部署Android应用程序令人沮丧

我假设我的应用程序运行良好。在页面中,我为
BoxView
使用了一种样式。样式在App.xaml中定义为:

<?xml version="1.0" encoding="UTF-8" ?>
<Application
    x:Class="myApp.App"
    xmlns="http://xamarin.com/schemas/2014/forms"
    xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">
    <Application.Resources>
        <ResourceDictionary>
            <Style x:Key="WarmGreyLine" TargetType="BoxView">
                <Setter Property="HeightRequest" Value="2" />
                <Setter Property="HorizontalOptions" Value="Fill" />
                <Setter Property="Color" Value="#EEE9E5" />
                <Setter Property="Margin" Value="0,10,0,10" />
            </Style>
        </ResourceDictionary>
    </Application.Resources>
</Application>


这是错误还是我的错?提前感谢

AFAIK中断模式只不过是一些中断点。所以-IMHO-这不是一个bug,它是一个特性;D只是开玩笑,这没有错谢谢!:)那它是虫子吗?还是虫子是我?
<BoxView Style="{StaticResource WarmGreyLine}" />