我用的是 listview的 SelectionChanged事件 里面写跳转
NavigationWindow window = new NavigationWindow();
window.Source = new Uri("Page1.xaml", UriKind.Relative);
这样做 在点击listview绑定的图片 没有点击效果 直接就跳转过去了
有没有其他的方法可以实现这种功能?
你可以把跳转不写在SelectionChanged事件中,而写在其它事件,比如鼠标松开的事件里,不就能先看到效果再跳转了?
呵呵 恍然大悟 OK了 3Q