gpt4 book ai didi

xamarin - 系统.InvalidCastException : Specified cast is not valid in xamarin forms?

转载 作者:行者123 更新时间:2023-12-04 15:45:10 25 4
gpt4 key购买 nike

我正在处理 Xamarin.Forms 我遇到了错误

"System.InvalidCastException: Specified cast is not valid."

我在 StackOverflow 中发现了一个类似的问题 Xamarin.Forms Binding Specified cast is not valid

但这里回答为删除网格,但在我的情况下,我没有使用网格,所以我收到错误

<StackLayout x:Name="roll"  HeightRequest="0"> 

<SearchBar Placeholder="Type to Search" TextChanged="SearchDropDown" />

<ListView x:Name="SearchDropDownList" ItemsSource="{Binding Items}" CachingStrategy="RecycleElement" ItemSelected="OnItemSelected">
<ListView.ItemTemplate>
<DataTemplate>
<input:CheckBox Text="{Binding Text}" />
</DataTemplate>
</ListView.ItemTemplate>
</ListView>

</StackLayout>

我正在使用来自 NuGet 包管理器Xamarin.Forms.InputKit 包。

我该如何解决?

最佳答案

我通过将代码更改为以下内容解决了错误

<ListView  x:Name="SearchDropDownList" ItemsSource="{Binding Items}" CachingStrategy="RecycleElement" ItemSelected="OnItemSelected">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<ViewCell.View>
<StackLayout>
<input:CheckBox Text="{Binding Text}" Type="Check"/>
</StackLayout>
</ViewCell.View>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>

关于xamarin - 系统.InvalidCastException : Specified cast is not valid in xamarin forms?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56197620/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com