如何在新的 VS2010 编辑器扩展性中创建编辑器选项
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要在 Vs2010 中定义新的编辑器选项,您需要执行以下操作
EditorOPtionDefinition
或EditorOptionDefinition
的类EditorOptionDefinition
的导出 代码>.示例
To define a new Editor option in Vs2010 you need to do the following
EditorOPtionDefinition
orEditorOptionDefinition<T>
EditorOptionDefinition
.Example