添加额外的上下文菜单 windows 10 phone
Adding a additional context menu to windows 10 phone
如何将上下文菜单添加到 windows phone 10 的上下文菜单。
第一次安装应用程序时会添加菜单 运行。
点击该菜单将打开包含所提供数据的应用程序。
在 UWP 中可以吗?
Context Menu in Edge mobile
Context Menu in Edge mobile
How to add context menu to windows phone 10's context menu.
实际上 windows phone 10 中的每个应用程序都有自己的默认设置 context menu
。并非所有应用程序都具有名为 'windows phone 10 context menu' 的相同上下文菜单。例如,人物应用的默认上下文菜单是 "Edit"、"Delete" 等,照片应用的默认上下文菜单是 "Share"、"Add to album" 等。所以你需要确定你需要添加哪个应用程序的上下文菜单。
如果您想为正在开发的 uwp 应用程序添加上下文菜单,这很容易做到。在 uwp 应用程序中,您可以使用 PopupMenu
to create a custom context menu and with UICommand
to add menu items. Details please reference the context menu official sample. If you want to launch another app by selecting one item, you need to launch the app by Launcher class when the item selected. More details about how to launch an app please reference this sample.
如果你想为 Edge 应用程序添加上下文菜单,如你显示的图片,你需要使用扩展中的 Microsoft Edge Extensions. That extension support context menu relative APIs like contextMenus.create
method. Details please reference the supported APIs。请注意,Edge 的上下文菜单 API 仅支持 Microsoft Edge (38) / Windows 10 (14393).
其他应用也一样,如果应用不打开扩展程序或public API,则无法直接更改上下文菜单。
Menu will get added when app is install & run for first time.
当当前应用是第一个时,您不能向另一个应用添加菜单 运行 因为 uwp 应用是沙盒。对于像Edge这样的第三方应用,你只能完成扩展并加载到资源管理器中让上下文菜单更改生效,你不能从你的应用中控制它。
如何将上下文菜单添加到 windows phone 10 的上下文菜单。
第一次安装应用程序时会添加菜单 运行。
点击该菜单将打开包含所提供数据的应用程序。
在 UWP 中可以吗?
Context Menu in Edge mobile Context Menu in Edge mobile
How to add context menu to windows phone 10's context menu.
实际上 windows phone 10 中的每个应用程序都有自己的默认设置 context menu
。并非所有应用程序都具有名为 'windows phone 10 context menu' 的相同上下文菜单。例如,人物应用的默认上下文菜单是 "Edit"、"Delete" 等,照片应用的默认上下文菜单是 "Share"、"Add to album" 等。所以你需要确定你需要添加哪个应用程序的上下文菜单。
如果您想为正在开发的 uwp 应用程序添加上下文菜单,这很容易做到。在 uwp 应用程序中,您可以使用 PopupMenu
to create a custom context menu and with UICommand
to add menu items. Details please reference the context menu official sample. If you want to launch another app by selecting one item, you need to launch the app by Launcher class when the item selected. More details about how to launch an app please reference this sample.
如果你想为 Edge 应用程序添加上下文菜单,如你显示的图片,你需要使用扩展中的 Microsoft Edge Extensions. That extension support context menu relative APIs like contextMenus.create
method. Details please reference the supported APIs。请注意,Edge 的上下文菜单 API 仅支持 Microsoft Edge (38) / Windows 10 (14393).
其他应用也一样,如果应用不打开扩展程序或public API,则无法直接更改上下文菜单。
Menu will get added when app is install & run for first time.
当当前应用是第一个时,您不能向另一个应用添加菜单 运行 因为 uwp 应用是沙盒。对于像Edge这样的第三方应用,你只能完成扩展并加载到资源管理器中让上下文菜单更改生效,你不能从你的应用中控制它。