我正在尝试学习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>