发生了未处理的异常

时间:2017-12-01 05:17:54

标签: c# xaml xamarin xamarin.forms

我正在尝试学习xamarin并以xamarin形式制作UI。我尝试添加<image/>但是当我添加超过2行代码<image/>时,我收到此错误An unhandled exception occured并且我不知道原因。我试图寻找解决方案,但我没有任何运气来解决它。请问我该如何解决这个问题?

我的xaml:

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
         xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
         x:Class="MyMenu.Home"
         Title ="Home">
<ScrollView>
    <Grid RowSpacing="0">
        <Grid.RowDefinitions>
            <RowDefinition Height="180"/>
            <RowDefinition Height="180"/>
            <RowDefinition Height="180"/>
            <RowDefinition Height="180"/>
        </Grid.RowDefinitions>
        <Image Grid.Row="0" Aspect="AspectFill" Source="order.jpg"/>
        <Image Grid.Row="1" Aspect="AspectFill" Source="loyaltycard.jpg"/>
        <Image Grid.Row="2" Aspect="AspectFill" Source="coupon.jpg"/>
        <Image Grid.Row="3" Aspect="AspectFill" Source="photo.jpg"/>
    </Grid>
</ScrollView>

0 个答案:

没有答案