我有以下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项目中,但我得到了上述错误。我做错了什么?
谢谢!
答案 0 :(得分:1)
ImageCell(和所有* Cell控件)适用于ListView和Tables中的我们。在这种情况下,您应该使用常规的Image控件。