ImageButton显示图像并响应点击或单击 指导应用程序执行特定任务。
错误:在此代码的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>
答案 0 :(得分:2)
从注释中可以得出,您正在使用Xamarin.Forms的旧版本。您应该将软件包至少升级到3.4版,该版本是introduced ImageButton
所控制的版本。
在这种情况下,棱镜版本并不重要。
答案 1 :(得分:0)
ImageButton仅在Xamarin.Forms 3.4中可用。
检查您的版本,很可能已经过时并且ImageButton在较低版本中不可用