Xamarin Forms:'Xamarin.Forms.ImageCell'类型的对象无法转换为'Xamarin.Forms.View'类型

时间:2016-11-04 21:07:39

标签: xamarin.forms

我有以下XAML:

<Grid>
    <Grid.RowDefinitions>
        <RowDefinition Height="auto"/>
        <RowDefinition Height="auto"/>
        <RowDefinition Height="auto"/>
        <RowDefinition Height="auto"/>
        <RowDefinition Height="auto"/>
        <RowDefinition Height="auto"/>
        <RowDefinition Height="*"/>
        <RowDefinition Height="auto"/>
    </Grid.RowDefinitions>
    <!--Home-->
    <ImageCell ImageSource="Home.png" Text="Home" Grid.Row="2"/>
</Grid>

Home.png在android,ios和UWP项目中,但我得到了上述错误。我做错了什么?

谢谢!

1 个答案:

答案 0 :(得分:1)

ImageCell(和所有* Cell控件)适用于ListView和Tables中的我们。在这种情况下,您应该使用常规的Image控件。