因此,我将我的Xamarin.Forms版本更新为4.4.0.991477,对所有项目及其PackageReferences进行了更新,更新/删除了一些NuGet包,以消除旧的引用(例如,CarouselView内置于Xamarin.Forms 4.0+中,因此不再需要NuGet包),但是每当我放松项目时,我仍然会得到
XAML Hot Reload is disabled because it requiresXamarin.Forms 4.1.0.5814
我从Nuget安装了Xamarin Forms Carousel视图1)无法解析程序集:“Xamarin.Forms.CarouselView,Version=0.0.0.0<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft
我的Droid-Project中有以下课程:using Xamarin.Forms.Platform.Android;
namespace MyProject.Droid public class ArrowButtonRenderer : Xamarin.Forms.Platform.Android.ButtonRenderer{
在使用Xamarin Forms CarouselView的一个简单示例中,我尝试将使用Binding的ItemsSource设置为公共对象(get属性),但它不起作用。CarouselView会出现,但没有任何数据可查看。下面是我的Xaml和代码隐藏:using System.Collections.Generic;usi