我正在设计自己的 GUI,并使用 XML 进行存储。它具有对子项具有特殊属性的元素,TabFolder 具有每个子项的选项卡名称,Window 具有每个子项的位置。
示例 1:
<tabfolder>
<stuff tabtitle="Stuff">...</stuff>
<stuff tabtitle="Stuff2">...</stuff>
</tabfolder>
<window>
<button position="title_right" id="close"></button>
<button position="title_right" id="hide"></button>
<stuff position="content"></stuff>
</window>
示例 2:
<tabfolder>
<tab>
<title>Stuff</title>
<content><stuff>...</stuff></content>
</tab>
<tab>
<title>Stuff2</title>
<content><stuff>...</stuff></content>
</tab>
</tabfolder>
<window>
<title_right>
<button id="close"></button>
<button id="hide"></button>
</title_right>
<content><stuff></stuff></content>
</window>
以下哪个示例显示了正确的方法?
第一个很短。2nd看起来更标准。