ContextMenu on tap instead of tap and hold

前端 未结 2 2003
星月不相逢
星月不相逢 2020-12-16 00:43

I need to open up a menu and since WP7 is not designed to perform such actions, I am taking help of Toolkit. Following is the sample code:



        
相关标签:
2条回答
  • 2020-12-16 01:14

    If you want a context menu for your application, then the ContextMenu and ContextMenuService are the best approach to take because it is standard throughout third party and pre-installed applications. Users already understand the 'tap-and-hold' gesture, so working around that will be counter-intuitive.

    If (for whatever reason) you must initiate a ContextMenu from a single tap, then you can always customize the source code for ContextMenu.cs from the Silverlight Toolkit so that instead of hooking the Hold event it hooks the Tap event.

    0 讨论(0)
  • 2020-12-16 01:16

    You could add GestureListener to the Border and subscribe to the Tap event. In the event handler, you get the ContextMenu for the Border and set IsOpen to true if it doesn't have a logical parent.

    <Border BorderThickness="3" Padding="6">
        <toolkit:GestureService.GestureListener>
            <toolkit:GestureListener Tap="GestureListener_Tap" />
        </toolkit:GestureService.GestureListener>
        <toolkit:ContextMenuService.ContextMenu>
            <toolkit:ContextMenu>
                <toolkit:MenuItem Header="item1" Click="Item1_Click" />
                <toolkit:MenuItem Header="item2" Click="Item2_Click" />
                <toolkit:MenuItem Header="item3" Click="Item3_Click" />
            </toolkit:ContextMenu>
        </toolkit:ContextMenuService.ContextMenu>
        <TextBlock Text="Tap" />
    </Border>
    
    private void GestureListener_Tap(object sender, GestureEventArgs e)
    {
        Border border = sender as Border;
        ContextMenu contextMenu = ContextMenuService.GetContextMenu(border);
        if (contextMenu.Parent == null)
        {
            contextMenu.IsOpen = true;
        }
    }
    
    0 讨论(0)
提交回复
热议问题