在Xamarin表单中查找Listview的ItemTemplate中的控件

时间:2016-12-23 08:51:44

标签: xamarin xamarin.forms

我正在使用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>

0 个答案:

没有答案