如何使用UWP上下文功能?

时间:2017-02-20 20:22:20

标签: xaml uwp win-universal-app windows-10-universal

具体来说,我说的是UIElement.ContextRequested和UIElement.ContextFlyout。我对此的理解是以下代码:

<Rectangle Fill="Red">
            <Rectangle.ContextFlyout>
                <MenuFlyout>
                    <MenuFlyoutItem Text="Edit"/>
                    <MenuFlyoutItem Text="Delete"/>
                </MenuFlyout>
            </Rectangle.ContextFlyout>
 </Rectangle>

当我在桌面上右键单击它时,会显示上下文菜单。然而,没有任何反应。上下文请求的事件似乎也没有在桌面上触发。我做错了什么?

0 个答案:

没有答案