在 xmlns Xamarin Forms 中找不到类型 ImageButton
Type ImageButton not found in xmlns Xamarin Forms
The ImageButton displays an image and responds to a tap or click that
directs an application to carry out a particular task.
错误:在此代码的 xmlns 中找不到类型 ImageButton:
<Grid>
<ImageButton Source="XamarinLogo.png"
HorizontalOptions="Center"
VerticalOptions="CenterAndExpand" />
<Image Source="word.png" Aspect="Fill"/>
<Label HorizontalOptions="Fill" VerticalOptions="Fill" FontSize="20" TextColor="{Binding TextColor}"
XAlign="Center" YAlign="Center" Text="{Binding Word}" BackgroundColor="{Binding BoxColor}"/>
</Grid>
ImageButton 仅在 Xamarin.Forms 3.4 中可用。
检查你的版本,很可能是过时的并且 ImageButton 在低版本中不可用
根据评论推断,您使用的是 Xamarin.Forms 的旧版本。您应该至少将软件包升级到 3.4 版,这是 introduced ImageButton
控制的版本。
在这种情况下,Prism 版本并不重要。
The ImageButton displays an image and responds to a tap or click that directs an application to carry out a particular task.
错误:在此代码的 xmlns 中找不到类型 ImageButton:
<Grid>
<ImageButton Source="XamarinLogo.png"
HorizontalOptions="Center"
VerticalOptions="CenterAndExpand" />
<Image Source="word.png" Aspect="Fill"/>
<Label HorizontalOptions="Fill" VerticalOptions="Fill" FontSize="20" TextColor="{Binding TextColor}"
XAlign="Center" YAlign="Center" Text="{Binding Word}" BackgroundColor="{Binding BoxColor}"/>
</Grid>
ImageButton 仅在 Xamarin.Forms 3.4 中可用。
检查你的版本,很可能是过时的并且 ImageButton 在低版本中不可用
根据评论推断,您使用的是 Xamarin.Forms 的旧版本。您应该至少将软件包升级到 3.4 版,这是 introduced ImageButton
控制的版本。
在这种情况下,Prism 版本并不重要。