如何在使用了DataTemplate的ListBox中,根据DataTemplate中的控件获取ListBoxItem
问题描述:
我有一个ListBox,使用ListBox.ItemTemplate和DataTempltae定义了每一个ListBoxItem,在DataTemplate中,有其他控件。
假设DataTemplate中有一个Button和一个TextBlock,我现在想点击Button,然后想得到该Button所处的ListBoxItem
代码:
<ListBox ItemsSource="{Binding Data}"> <ListBox.ItemTemplate> <DataTemplate x:Name="Item"> <StackPanel> <TextBlock Text="{Binding time}"/> <Button Content="Click" Name="Btn" Click="Btn_Click"/> </StackPanel> </DataTemplate> </ListBox.ItemTemplate></ListBox>
<ListBox ItemsSource="{Binding Data}"> <ListBox.ItemTemplate> <DataTemplate x:Name="Item"> <StackPanel> <TextBlock Text="{Binding time}"/> <Button Content="Click" Name="Btn" Click="Btn_Click" Tap="{Binding Index}"/> </StackPanel> </DataTemplate> </ListBox.ItemTemplate></ListBox>