0

我正在使用 TagVisualizer 对象开发 Microsoft Surface(pixelsense) 应用程序我正在寻找一种方法来捕获其他 UI 元素(如按钮)上的 tagEnter、tagLeave 事件。例如,在下面的 XAML 代码中,我想在 TagVisualizer 进入“Button1”的边界时捕获一个事件。

  <Grid>
    <s:TagVisualizer 
        Name="MaintagVisualizer" VisualizationAdded="MaintagVisualizer_VisualizationAdded" 
        VerticalAlignment="Stretch" 
        HorizontalAlignment="Stretch" 
        HorizontalContentAlignment="Center" 
        Height="Auto" Width="Auto"
        VerticalContentAlignment="Center" >

        <s:TagVisualizer.Definitions>
            <s:TagVisualizationDefinition LostTagTimeout="2000" MaxCount="1" Value="0x1" Source="TagVisualizationEllipse.xaml" />
        </s:TagVisualizer.Definitions>

        <s:SurfaceButton Name="Button1" HorizontalAlignment="Left" VerticalAlignment="Top" Content="test" Width="120" Height="40" Margin="20" ></s:SurfaceButton>

    </s:TagVisualizer>
</Grid>
4

1 回答 1

2

我知道这是一个旧帖子,但我想我会记录一些东西来帮助别人。

我正在做类似的事情...尝试捕获将标签放置在名为 myMap 的控件上时的触摸事件(向下、向上等)。

这是我开发的解决方案:首先,窗口的触摸侦听器:

public SurfaceWindow1()
    {
         Touch.FrameReported += new TouchFrameEventHandler(Touch_FrameReported);
    }

然后处理程序:

void Touch_FrameReported(object sender, TouchFrameEventArgs e)
    {

        if (this.myMap != null)
        {
            string active_capture = "";

            foreach (TouchPoint _touchPoint in e.GetTouchPoints(this.myMap))
            {

                if (_touchPoint.TouchDevice.Captured != null)
                {
                    active_capture = _touchPoint.TouchDevice.Captured.ToString();
                }

                if (active_capture.Contains("TagVisualizer"))
                {
                    //This touch was captured by the tag visualizer, therefore it must be a tag
                   if (_touchPoint.Action == TouchAction.Down)
                    {
                        TagTouchId = _touchPoint.TouchDevice.Id;
                        //now you can do whatever you like with the TouchDevice ID
                    }
                }
            }
        }
    }

您可能可以用按钮控件做同样的事情。至少这可以让你开始。

于 2012-12-20T00:45:59.353 回答