VB Xml 文字中的 IntelliSense
有没有办法在 VB9 (VS 2008) 中启用 XML 文本的 IntelliSense? IntelliSense 的理想来源是 XSD 文档,但我可以使用任何其他格式来实现。
谢谢
is there a way to enable IntelliSense for XML literals in VB9 (VS 2008)?
The ideal source of IntelliSense is an XSD document, but I can use anything else format to do it.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
http://msdn.microsoft.com/en-us/library/bb531402。 aspx
它有效,我几个月前用过它。如果您安装了 VS2k8 Docmentation,请转至如何:在 Visual Basic 中启用 XML IntelliSense,网址为
ms-help://MS.MSDNQTR.v90.en/dv_vbalr/html/af67d0ee-a4a6 -4abf-9c07-5a8cfe80d111.htm
,它有您需要让它工作的示例。缺乏在线文档。摘录
在代码文件中导入 XML 命名空间
从 XSD 架构中识别目标命名空间。
在代码文件的开头,添加目标 XML 命名空间的 Imports 语句,如以下示例所示。
要将 XML 命名空间导入为默认命名空间(即应用于没有命名空间前缀的 XML 元素和属性的命名空间),请为目标默认 XML 命名空间添加 Imports 语句。不要指定命名空间前缀。以下是 Imports 语句的示例。
http://msdn.microsoft.com/en-us/library/bb531402.aspx
It works, I used it a few months back. If you have VS2k8 Docmentation installed, go to How to: Enable XML IntelliSense in Visual Basic at
ms-help://MS.MSDNQTR.v90.en/dv_vbalr/html/af67d0ee-a4a6-4abf-9c07-5a8cfe80d111.htm
, it has the example you need to get this working. The on-line documentation is lacking.Excerpt
To import an XML namespace in a code file
Identify the target namespace from your XSD schema.
At the beginning of the code file, add an Imports statement for the target XML namespace, as shown in the following example.
To import an XML namespace as the default namespace, that is, the namespace that is applied to XML elements and attributes that do not have a namespace prefix, add an Imports statement for the target default XML namespace. Do not specify a namespace prefix. Following is an example of an Imports statement.
我还没有看到任何方法可以做到这一点。请在 Microsoft Connect 网站上对此建议进行评分或发表评论。
https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback。 aspx?FeedbackID=490740
I haven't seen any way of doing this. Please go rate or comment on this suggestion on the Microsoft Connect site.
https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=490740