如何为其创建事件以检测用户是否点击了列表框中的项目
<!--Pivot Control-->
<controls:Pivot Title="MY APPLICATION">
<!--Pivot item one-->
<controls:PivotItem Header="item1">
<ListBox x:Name="lbFiles" HorizontalContentAlignment="Stretch" ItemTemplate="{StaticResource DataTemplate1}">
</ListBox>
</controls:PivotItem>
<!--Pivot item two-->
<controls:PivotItem Header="item2">
</controls:PivotItem>
</controls:Pivot>
背后的代码
private void lbFile_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
selected = lbFiles.SelectedItem.ToString();
general item = new general();
item.viewimage(selected);
NavigationService.Navigate(new Uri("/View.xaml", UriKind.Relative));
}
头痛感谢! :d
答案 0 :(得分:1)
您没有附加SelectionChanged事件。你有一个功能,但你没有使用它。
<ListBox x:Name="lbFiles" HorizontalContentAlignment="Stretch" SelectionChanged="lbfile_SelectionChanged" ItemTemplate="{StaticResource DataTemplate1}">
</ListBox>
您需要附加事件以便使用它们。你应该通过create.msdn上的前几个WP7教程 - 你会发现很多你需要的东西,并且对这样的事情感觉更舒服。