我有两个WPF视图(Vista1.xaml和Vista2.xaml),它们是MainWindow.xaml的一部分。 在Vista1.xaml中我有一个列表视图,用户通过单击选择一些项目,Vista2.xaml有一个按钮。 我希望当用户点击Vista2.xaml按钮时,获取用户之前在Vista1.xaml列表视图中选择的项目。
我在Vista1.xaml.cs ListViewItem_PreviewMouseLeftButtonDown方法中有一个类,它捕获用户选择列表视图中的项目。 代码如下
private void ListViewItem_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
var item = sender as ListViewItem;
if (item != null && item.IsSelected)
{
...
}
}
感谢您的帮助
答案 0 :(得分:0)
向您| 0 | 0 | 0 | 0 | | 0 | 0 | 0 | 0 |
| 0 | 1 | 0 | 0 | ---\ | 0 | 1 | 2 | 0 |
| 0 | 0 | 0 | 0 | ---/ | 0 | 2 | 0 | 0 |
| 0 | 0 | 0 | 0 | | 0 | 0 | 0 | 0 |
添加一个公共属性,其中包含您要在MainPage
和Vista1
之间传递的数据。然后,在Vista1的事件处理程序中,设置属性,并在Vista2的按钮上单击读取属性。