IVsUIShell.ShowContextMenu 方法
显示活动菜单对象的上下文菜单。
命名空间: Microsoft.VisualStudio.Shell.Interop
程序集: Microsoft.VisualStudio.Shell.Interop(在 Microsoft.VisualStudio.Shell.Interop.dll 中)
语法
声明
Function ShowContextMenu ( _
dwCompRole As UInteger, _
ByRef rclsidActive As Guid, _
nMenuId As Integer, _
pos As POINTS(), _
pCmdTrgtActive As IOleCommandTarget _
) As Integer
int ShowContextMenu(
uint dwCompRole,
ref Guid rclsidActive,
int nMenuId,
POINTS[] pos,
IOleCommandTarget pCmdTrgtActive
)
参数
- dwCompRole
类型:System.UInt32
[in] 不要使用。
- rclsidActive
类型:System.Guid%
[in] 在 .ctc 文件指定上下文菜单的 GUID。
- nMenuId
类型:System.Int32
[in] 显示的上下文菜单的标识符从 .ctc 文件。
- pos
类型:array<Microsoft.VisualStudio.Shell.Interop.POINTS[]
[in] 指定该位置放置上下文菜单。
- pCmdTrgtActive
类型:Microsoft.VisualStudio.OLE.Interop.IOleCommandTarget
[in] 对于活动菜单对象的 IOleCommandTarget 接口的指针。可以为 nullnull 引用(在 Visual Basic 中为 Nothing)。
返回值
类型:System.Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。
备注
COM 签名
从 vsshell.idl:
HRESULT IVsUIShell::ShowContextMenu(
[in] DWORD dwCompRole,
[in] REFCLSID rclsidActive,
[in] LONG nMenuId,
[in] REFPOINTS pos,
[in] IOleCommandTarget *pCmdTrgtActive
);
所有命令先路由到在 pCmdTrgtActive传递的 IOleCommandTarget 。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。