Windows应用商店应用:转发鼠标事件

时间:2013-01-28 12:10:00

标签: xaml events windows-store-apps ui-automation bing-maps

我有一个全屏Bing地图控件。在顶部,我想覆盖其他各种控件。

<Grid>
<maps:Map x:Name="Map" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" />

<Grid Style="{StaticResource LayoutRootStyle}" Background="Transparent"
      x:Name="InnerGrid">
  <Grid.RowDefinitions>
    <RowDefinition Height="132" />
    <RowDefinition Height="*" />
  </Grid.RowDefinitions>

  <Grid.ColumnDefinitions>
    <ColumnDefinition Width="700" />
    <ColumnDefinition Width="350" />
  </Grid.ColumnDefinitions>

  ... Content ...

问题是InnerGrid消耗了我需要地图控件接收的鼠标事件。将背景设置为透明没有任何用处。

所以,我找到了RoutedEvents的东西:

internal sealed partial class PageCodeBehind : Page
{
    public PageCodeBehind()
    {
        InitializeComponent();
        InnerGrid.AddHandler(PointerPressedEvent, new PointerEventHandler(OnPointerPressedEvent), true);
        InnerGrid.AddHandler(PointerMovedEvent, new PointerEventHandler(OnPointerMovedEvent), true);
    }

    private void OnPointerPressedEvent(object sender, PointerRoutedEventArgs pointerRoutedEventArgs)
    {
        // I can hit a breakpoint here...

        var peer = FrameworkElementAutomationPeer.FromElement(GigMap) as MapAutomationPeer;
        peer.RaiseAutomationEvent(...);

所以 - 我可以捕获事件,但我不知道如何在Map控件上触发事件。看过自动化同行的东西 - 似乎他们关注的是更高级别的概念,而不是鼠标按下,比如打开工具提示等。

知道如何将所有事件从InnerGrid控件转发到Map控件吗?

非常感谢您的帮助, 乔恩

1 个答案:

答案 0 :(得分:0)

好的 - 我找到了解决办法。在InnerGrid上设置Background =“{x:Null}”使其转发事件。在MSDN上一如既往地没有文档: - )

如果有人知道更多信息,我仍然想知道其他任何可用的方法。

非常感谢, 乔恩