如何在新的 VS2010 编辑器扩展性中创建编辑器选项

发布于 2024-08-20 15:51:33 字数 217 浏览 3 评论 0原文

VS2010 的扩展点列表编辑提到创建 EditorOptionDefinitions 以及一个小示例。当我尝试执行此操作时,我在 VS2010 UI 中找不到任何选项。如何创建它们以便它们显示在 UI 中?

The list of extensibility points for the VS2010 Editor mentios creating EditorOptionDefinitions along with a small sample. When I attempt to do this I cannot find the options anywhere in the VS2010 UI. How do I create these so that they are surfaced in the UI?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

新雨望断虹 2024-08-27 15:51:33

要在 Vs2010 中定义新的编辑器选项,您需要执行以下操作

  1. 创建一个派生自 EditorOPtionDefinitionEditorOptionDefinition 的类
  2. 添加 EditorOptionDefinition 的导出 代码>.
  3. 确保定义此的程序集被列为 MEF 组件

示例

[Export(typeof(EditorOptionDefinition))]
public sealed class SomeNewOption : EditorOptionDefinition<string> {
  public override Default { get ... } 
  public override EditorOptionKey<string> Key { get ... }
}

To define a new Editor option in Vs2010 you need to do the following

  1. Create a class which derives from EditorOPtionDefinition or EditorOptionDefinition<T>
  2. Add an export of EditorOptionDefinition.
  3. Make sure the assembly where this is defined is listed as a MEF component

Example

[Export(typeof(EditorOptionDefinition))]
public sealed class SomeNewOption : EditorOptionDefinition<string> {
  public override Default { get ... } 
  public override EditorOptionKey<string> Key { get ... }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文