文字清單 (郵件資料夾) 範本 (HTML)
[ 本文的目標對象是撰寫 Windows 執行階段 App 的 Windows 8.x 和 Windows Phone 8.x 開發人員。如果您正在開發適用於 Windows 10 的 App,請參閱 最新文件 ]
定義郵件資料夾清單中代表郵件資料夾的項目。 這個範本用來與具備清單配置的 ListView 搭配使用。如需其他的範本,請參閱格線配置的項目範本以及清單配置的項目範本。
使用範本
如果要使用範本,請將 HTML 和 CSS 樣式複製到您的專案。HTML 有一個專門設計用來與範本搭配使用的 ListView。複製 HTML 之後,請將 ListView 控制項的 itemDataSource 設定成應用程式的資料來源,然後更新範本的 data-win-bind 屬性,讓它們可以處理您的資料。
若要讓範本正常運作,將 win-selectionstylefilled
類別指派到您的 ListView。
HTML
<!-- Item template -->
<div id="textListMailFolderTemplate"
data-win-control="WinJS.Binding.Template">
<div class="textListMailFolder">
<h2 data-win-bind="innerText: text"></h2>
</div>
</div>
<!-- ListView -->
<div id="textListMailFolder"
class="win-selectionstylefilled"
style="position: relative; left: -1px; top: 129px; border: none"
data-win-control="WinJS.UI.ListView"
data-win-options="{ itemDataSource: list.dataSource,
itemTemplate: select('#textListMailFolderTemplate'),
layout: { type: WinJS.UI.ListLayout } }">
</div>
CSS
/* overall list dimensions */
#textListMailFolder {
margin-left: 110px;
width: 308px; /*+18 px to account for scrollbar*/
height: 632px;
}
/*-------------------------------------------------------------------------------------------*/
/* textList-mailFolder - used for Mail folder*/
/*-------------------------------------------------------------------------------------------*/
/* style the background color of the filled-selection style items */
.win-selectionstylefilled :not(.win-footprint).win-container {
background-color: transparent;
}
.win-selectionstylefilled .win-container.win-swipe:hover {
background-color: transparent;
}
/* individual item dimensions */
.textListMailFolder {
width: 100%;
height: 40px;
padding: 4px 10px;
overflow: hidden;
}