我正在使用Listview将一些自定义ItemTemplate作为Xamarin Forms中的ContentView。 我需要在单击该列表中的某个按钮时更改数据绑定。
但我无法找到代码隐藏中的控件。
有没有办法呢?
<ListView HasUnevenRows="true" HorizontalOptions="FillAndExpand"
VerticalOptions="CenterAndExpand"
x:Name="lstInbox">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<uikit:GraphTemplate/>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>