基本上我有一个Surface ToolKit ScatterView被绑定到一个图像路径列表,这些路径被模板化为ImageView。 ImageView控件使用MouseUp事件,但在鼠标注册时不会触发该事件。我也用PreviewMouseUp尝试了它,但没有运气。为了澄清,我正在使用Surface ToolKit构建一个Win7触控应用程序。
Window.xaml:
<s:SurfaceWindow x:Class="SurfaceApplication1.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:s="http://schemas.microsoft.com/surface/2008"
xmlns:view="clr-namespace:SurfaceApplication1"
Title="SurfaceApplication1"
>
<Grid>
<s:ScatterView x:Name="scatterView">
<s:ScatterView.ItemTemplate>
<DataTemplate>
<view:ImageView DataContext="{Binding}" MinHeight="300" MinWidth="300"/>
</DataTemplate>
</s:ScatterView.ItemTemplate>
</s:ScatterView>
</Grid>
Window.xaml.cs:
public Window1()
{
InitializeComponent();
Loaded += new RoutedEventHandler(SurfaceWindow1_Loaded);
}
void SurfaceWindow1_Loaded(object sender, RoutedEventArgs e)
{
scatterView.ItemsSource = Directory.GetFiles(@"C:\Users\Public\Pictures\Sample Pictures", "*.jpg");
}
ImageView.xaml:
<UserControl x:Class="SurfaceApplication1.ImageView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d" PreviewMouseUp="Grid_MouseUp">
<Grid MouseUp="Grid_MouseUp">
<StackPanel>
<Image Source="{Binding}"/>
<TextBlock Text="{Binding}" Height="20" Width="100"/>
</StackPanel>
</Grid>
有没有人知道解决这个问题的方法?我需要在ImageView中处理MouseUp事件。感谢。
答案 0 :(得分:1)
鼠标被捕获到ScatterViewItem,这意味着鼠标事件不会到达项目的子项。您需要将此事件处理程序放在ScatterViewItem本身或项目的父项上。在usercontrol的代码中,您可以按照Parent.MouseUpEvent += yourHandler
我建议在ScatterViewItem上使用ContainerActivated和ContainerDeactivated事件,而不是使用mouseup / down。激活事件将在第一次触摸下降和最后一次触摸发生时发生。在多点触控世界中,您必须仔细考虑当用户在任何控件上使用多个手指时会发生什么,并一次一个地抬起这些手指。
答案 1 :(得分:0)
而不是使用普通事件语法。您可以在代码中使用UIElement.AddHandler方法,并指定您希望接收已处理的事件
MyGrid.AddHandler(Button.ClickEvent, new RoutedEventHandler(GetHandledToo), true);
您可以在MSDN.
上阅读相关信息