我的问题是,当我在标签列表中添加标签时,标签将不会显示。 我将标签绑定到“ DummyClass”内的对象。名字,姓氏,RepId。
我对此问题进行了大量研究,并要求多个人在此问题上提供帮助,但是似乎没有任何作用enter image description here
。
<StackLayout>
<ListView x:Name="listView"
HeightRequest="100">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<StackLayout>
<Label Text="Hello"
BackgroundColor="Red"
VerticalOptions="FillAndExpand"/>
<Label Text="Yes"
BackgroundColor="Red"
VerticalOptions="FillAndExpand"/>
<Label Text="Wooohooo"
BackgroundColor="Red"
VerticalOptions="FillAndExpand"/>
</StackLayout>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</StackLayout>
答案 0 :(得分:0)
我发现了我的问题所在。这是ItemSource。我的ItemSource定义不正确。解决了我遇到的所有问题。谢谢大家的帮助!