1.关闭 Visual Studio

2.打开 C:/Program Files (x86)/Microsoft Visual Studio 12.0/Common7/Packages/schemas/html 文件夹

3.删除 CommonHTML5Types.bin

4.打开 commonHTML5Types.xsd,以防万一,先备份再修改

5.打开文件找到此节点:<xsd:attributeGroup name="commonHTML5coreAttributeGroup"></xsd:attributeGroup>

在此节点中添加需要的提示,例如:

  ...

  ...

  <xsd:attribute name="ms-controller" />
  <xsd:attribute name="ms-include" />

</xsd:attributeGroup>

6.保存,启动 Visual Studio

//ms<xsd:attribute name="ms-controller" />
<xsd:attribute name="ms-important" />
<xsd:attribute name="ms-include" />
<xsd:attribute name="ms-text" />
<xsd:attribute name="ms-html" />
<xsd:attribute name="ms-class" />
<xsd:attribute name="ms-scan" />
<xsd:attribute name="ms-hover" />
<xsd:attribute name="ms-active" />
<xsd:attribute name="ms-on" />
<xsd:attribute name="ms-visible" />
<xsd:attribute name="ms-if" />
<xsd:attribute name="ms-if-loop" />
<xsd:attribute name="ms-duplex" />
<xsd:attribute name="ms-css" />
<xsd:attribute name="ms-data" />
<xsd:attribute name="ms-checked" />
<xsd:attribute name="ms-selected" />
<xsd:attribute name="ms-readonly" />
<xsd:attribute name="ms-disabled" />
<xsd:attribute name="ms-enabled" />
<xsd:attribute name="ms-title" />
<xsd:attribute name="ms-src" />
<xsd:attribute name="ms-href" />
<xsd:attribute name="ms-attr" />
<xsd:attribute name="ms-repeat" />
<xsd:attribute name="ms-each" />
<xsd:attribute name="ms-with" />
<xsd:attribute name="ms-widget" />
<xsd:attribute name="ms-click" />
<xsd:attribute name="ms-dblclick" />
<xsd:attribute name="ms-mousedown" />
<xsd:attribute name="ms-mouseup" />
<xsd:attribute name="ms-mouseover" />
<xsd:attribute name="ms-mousemove" />
<xsd:attribute name="ms-mouseout" />
<xsd:attribute name="ms-keypress" />
<xsd:attribute name="ms-keydown" />
<xsd:attribute name="ms-keyup" />
<xsd:attribute name="ms-mouseenter" />
<xsd:attribute name="ms-mouseleave" />
<xsd:attribute name="ms-blur" />
<xsd:attribute name="ms-focus" />
<xsd:attribute name="ms-change" />
<xsd:attribute name="ms-hover" />
<xsd:attribute name="ms-css-${1:pname}" />
<xsd:attribute name="ms-attr-${1:pname}" />
<xsd:attribute name="ms-repeat-${1:data}Item" />
<xsd:attribute name="ms-each-${1:data}Item" />
<xsd:attribute name="ms-on-${1:event}" />//data
<xsd:attribute name="data-include-rendered" />
<xsd:attribute name="data-include-loaded" />
<xsd:attribute name="data-with-sorted" />
<xsd:attribute name="data-duplex-changed" />
<xsd:attribute name="data-duplex-event" />
<xsd:attribute name="data-event" />
<xsd:attribute name="data-repeat-rendered" />
<xsd:attribute name="data-each-rendered" />
<xsd:attribute name="data-with-rendered" />

转载于:https://www.cnblogs.com/OleRookie/p/5619321.html

vsxxxx Avalon 感知提示相关推荐

  1. 微信小程序版本自动更新用户感知提示方案总结

    微信小程序版本自动更新用户感知提示方案总结 需求背景 最近基于uniapp开发微信小程序上线后,在迭代版本后期望自动更新提示. 使感知. 解决方案 使用全局唯一的对象: updateManager. ...

  2. 清华MBZUAICMU牛津提出DenseCLIP,用上下文感知的提示进行语言引导密集预测!代码已开源!...

    关注公众号,发现CV技术之美 ▊ 写在前面 最近的研究表明,使用对比图像文本对进行大规模的预训练可能是从自然语言监督中学习高质量视觉表示的有前途的方法.得益于更广泛的监督来源,这一新范式在下游分类任务 ...

  3. 如何为javascript代码编写注释以支持智能感知

    在使用Visual Studio做开发的时候,智能感知是非常方便的.从VS2008开始,提供了对javascript的智能感知支持.例如 上述代码中,我们先用document对象的getElement ...

  4. vscode python 第三方库自动补全 第三方库的智能提示

    VS Code python设置第三方包的智能感知 因为使用Pyside6框架写Python程序,而QT自己的Qt Creator 在使用方面确实不如VScode轻便,故而使用VScode写Pysid ...

  5. 使用VB.NET加快代码开发速度

    以前在学校时,编写代码都是使用C#,习惯了C#的代码习惯,等工作后由于工作需要逐渐的开始采用了VB.NET开发项目,渐渐地喜欢上了VB.NET,现在我就罗列一些VB.NET加速代码开发的方法. 一.智 ...

  6. 无人系统自主性研究综述

    来源:人机与认知实验室 一.引言 2012年7月,美国国防科学委员会发布了<自主性在国防部无人系统中的地位>,进一步指出自主能力是美军无人系统中的核心能力,分析了自主能力给无人机(UAV) ...

  7. 在 Visual Studio 中使用 Q# 进行量子编程

    1 量子计算机与量子编程 1.1 量子计算机 Quantum computing is computing using quantum-mechanical phenomena, such as su ...

  8. 从零开始学习jQuery (九) jQuery工具函数

    本系列文章导航 从零开始学习jQuery (一) 开天辟地入门篇 从零开始学习jQuery (二) 万能的选择器 从零开始学习jQuery (三) 管理jQuery包装集 从零开始学习jQuery ( ...

  9. 让你觉得破坏了封装性的扩展方法

    扩展方法源于对扩展方法的了解是来自List<T>的Where.Order.GroupBy等方法的使用,智能感知提示这些方法都是扩展方法,于是MSDN上查阅后总结如下自定义扩展方法(将字符串 ...

最新文章

  1. 用MODELLER构建好模型后对loop区域进行自动的优化过程
  2. 初学 Python(十三)——匿名函数
  3. MySQL数据库 高级查询(一)
  4. 本地Python连接服务器中的Mysql数据库
  5. vant-image本地图片无法显示
  6. 线程同步--条件变量
  7. P1466 集合 Subset Sums 搜索+递推+背包三种做法
  8. 145. 二叉树的后序遍历
  9. lie group and computer vision : 李群、李代数在计算机视觉中的应用
  10. HTML在日期单元格添加小图片,如何给图片添加上文字、日期和自己名字的小水印呢?...
  11. C#中的深度学习:了解神经网络架构
  12. c3p0使用 与批量生成
  13. NLPIR词性标记集
  14. 时间与空间的相对性——思想实验推导狭义相对论(四)
  15. 【Python技巧】字典
  16. 计算机毕业设计(80)php小程序毕设作品之视频播放电影小程序系统
  17. 【渝粤题库】陕西师范大学100131大学英语(二) 作业 (高起本、高起专)
  18. oracle左连接应用场景,Oracle左连接left join 的实际操作与应用
  19. arn-linux-gcc编译失败,arm-linux-gnueabihf-gcc交叉编译可执行程序失败的一种处理办法...
  20. SQLZOO附加题练习 - Window functions

热门文章

  1. SMTPDiag 诊断工具
  2. 敏捷个人俱乐部2012年2月线下活动:活出我的最好生活
  3. centos安装JDK与Tomcat
  4. linux下批量发请求
  5. 12个常用的JavaScript技巧
  6. 用字体在网页中画Icon图标
  7. 工厂模式(Factory)
  8. 时间源服务器|授时仪|GPS时钟同步系统
  9. win8 app内存溢出检测工具PerfView.exe的使用
  10. 漫水填充算法 - cvFloodFill() 实现