ProvideMenuResourceAttribute 类
提供有关用于 VSPackage 的菜单资源的注册信息。 此类不能被继承。
继承层次结构
System.Object
System.Attribute
Microsoft.VisualStudio.Shell.RegistrationAttribute
Microsoft.VisualStudio.Shell.ProvideMenuResourceAttribute
命名空间: Microsoft.VisualStudio.Shell
程序集: Microsoft.VisualStudio.Shell.11.0(在 Microsoft.VisualStudio.Shell.11.0.dll 中)
语法
声明
<AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple := True, Inherited := True)> _
Public NotInheritable Class ProvideMenuResourceAttribute _
Inherits RegistrationAttribute
[AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple = true, Inherited = true)]
public sealed class ProvideMenuResourceAttribute : RegistrationAttribute
ProvideMenuResourceAttribute 类型公开以下成员。
构造函数
名称 | 说明 | |
---|---|---|
ProvideMenuResourceAttribute(Int16, Int32) | 此构造函数使用给定资源 ID 和版本号创建新的 ProvideMenuResourceAttribute 对象。 | |
ProvideMenuResourceAttribute(String, Int32) | 初始化 ProvideMenuResourceAttribute 新实例与指定的资源 ID 和版本。 |
页首
属性
名称 | 说明 | |
---|---|---|
ResourceID | ResourceID 属性返回该构造函数设置的资源 ID 的值。 | |
TypeId | 获取此属性的当前实例。 (继承自 RegistrationAttribute。) | |
Version | 返回菜单资源的版本号。 |
页首
方法
名称 | 说明 | |
---|---|---|
Equals | 基础结构。返回一个值,该值指示此实例是否与指定的对象相等。 (继承自 Attribute。) | |
GetHashCode | 返回此实例的哈希代码。 (继承自 Attribute。) | |
GetType | 获取当前实例的 Type。 (继承自 Object。) | |
IsDefaultAttribute | 当在派生类中重写时,指示此实例的值是否是派生类的默认值。 (继承自 Attribute。) | |
Match | 当在派生类中重写时,返回一个指示此实例是否等于指定对象的值。 (继承自 Attribute。) | |
Register | 提供有关 VSPackage 中注册信息,在调用由外部注册工具 (如 regpkg.exe。有关更多信息,请参见 注册 Vspackage。 (重写 RegistrationAttribute.Register(RegistrationAttribute.RegistrationContext)。) | |
ToString | 返回表示当前对象的字符串。 (继承自 Object。) | |
Unregister | 移除了有关 VSPackage 中注册信息,在调用由外部注册工具 (如 regpkg.exe。有关更多信息,请参见 注册 Vspackage。 (重写 RegistrationAttribute.Unregister(RegistrationAttribute.RegistrationContext)。) |
页首
显式接口实现
名称 | 说明 | |
---|---|---|
_Attribute.GetIDsOfNames | 将一组名称映射为对应的一组调度标识符。 (继承自 Attribute。) | |
_Attribute.GetTypeInfo | 检索对象的类型信息,然后可以使用该信息获取接口的类型信息。 (继承自 Attribute。) | |
_Attribute.GetTypeInfoCount | 检索对象提供的类型信息接口的数量(0 或 1)。 (继承自 Attribute。) | |
_Attribute.Invoke | 提供对某一对象公开的属性和方法的访问。 (继承自 Attribute。) |
页首
备注
在调用
,如果类包含一个或多个菜单资源,请将 ProvideMenuResourceAttribute 于 Microsoft.VisualStudio.Package- 该的派生类或派生的类实现 IVsPackage 。 注册 regpkg.exe 或相似的注册工具的资源。 有关更多信息,请参见 注册 Vspackage。
基本用法
ProvideMenuResourceAttribute 类定义菜单资源的资源 ID 和版本号,提供了一个注册工具 (如 regpkg.exe 到注册 Visual Studio的菜单资源。 当 Visual Studio 会遇到一种注册的菜单资源的 VSPackage,它从 VSPackage 或包的托管或附属 DLL 资源检索信息并将该菜单。 Visual Studio 菜单系统。 若要使用 ProvideMenuResourceAttribute,请将其放置在 Package- 该的派生类或派生的类实现 IVsPackage。
为了使正确合并菜单的资源,资源 DLL 必须遵循附属 DLL 约定。 必须命名 assemblyfileUI.dll 并将其放入到一个适当,本地化的子目录。 有关菜单和菜单资源的更多信息,请参见 Vspackage 如何将用户界面元素到 IDE 和 命令、菜单和工具栏。
此特性类仅用于为外部注册工具提供数据。 它没有为 VSPackage 的运行时行为的任何效果。
备注
C# 自动追加单词 “属性”对任何特性类的名称。在 C# 代码,请参见此属性作为 ProvideMenuResource。
注册表项
以下注册表项由 ProvideMenuResourceAttribute创建的:
VSROOT\Menus \
VSROOT\Menus\{PackageGuid}=", ResourceID, Version”
示例
可以找到 ProvideMenuResourceAttribute 类的实现托管示例的。 用于自动注册和其他属性的标准位置的这是在 Package 类的实现的包装在 VsPkg.cs, VsPkg.vb 的或 VsPkg.cpp,基于用于该示例的语言。
线程安全
此类型的任何公共 static(在 Visual Basic 中为 Shared) 成员都是线程安全的。但不保证所有实例成员都是线程安全的。
请参见
参考
Microsoft.VisualStudio.Shell 命名空间