menuschema.xml

来自「Windows Web脚本开发指南/(美) Dan Heflin, Todd N」· XML 代码 · 共 33 行

XML
33
字号
<Schema xmlns="urn:schemas-microsoft-com:xml-data"
	xmlns:dt="urn:schemas-microsoft-com:datatypes">

<AttributeType name="catID" required="yes"/>
<AttributeType name="referToItem" dt:type="idref" required="yes"/>
<AttributeType name="products" required="yes" />
<AttributeType name="source" />

<ElementType name="item" content="eltOnly"> 
  <attribute type="referToItem" />  
</ElementType>

<ElementType name="featureItems" content="eltOnly"> 
  <element type="item" />
</ElementType>

<ElementType name="category" content="eltOnly">
  <attribute type="catID" />
  <attribute type="products" />
  <attribute type="source" />
  <element type="featureItems" />
</ElementType>

<ElementType name="categories" content="eltOnly">
  <element type="category" />
</ElementType>

<ElementType name="itemList" content="eltOnly" />
<ElementType name="catalogMenu" content="eltOnly">
  <element type="categories" />
  <element type="itemList" />
</ElementType>
</Schema>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?