简体   繁体   中英

ContextMenu in Windows Phone project does not appear

I have problem with contextMenu in Windows Phone. It does not appear even in the project which I have downloaded from: http://www.geekchamp.com/articles/wp7-contextmenu-in-depth--part1-key-concepts-and-api When I click the button from the project above nothing happens.

I was searching for the solution but I have not found. Any ideas?

Code sample which doesn't work:

           <Button Content="OpenContextMenu" Height="100" Width="270">
            <toolkit:ContextMenuService.ContextMenu>
                <toolkit:ContextMenu  VerticalOffset="50.0" IsZoomEnabled="True"  x:Name="menu">
                    <toolkit:MenuItem Header="Add"  Click="MenuItem_Click"/>
                    <toolkit:MenuItem Header="Update"  Click="MenuItem_Click"/>
                    <toolkit:MenuItem Header="Delete"  Click="MenuItem_Click"/>
                </toolkit:ContextMenu>
            </toolkit:ContextMenuService.ContextMenu>
        </Button>

正如MatDev8所建议的那样,您需要“按住”以显示上下文菜单。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM