共用方式為


影像與文字清單 (登陸貼齊) 範本 (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="imageTextListLandingTemplate" 
     data-win-control="WinJS.Binding.Template">
  <div class="imageTextListLandingSnap">
    <img class="imageTextListLandingSnapImage" 
         data-win-bind="src: icon"/>
    <div class="imageTextListLandingSnapText" 
         data-win-bind="innerText: largeText"></div>
  </div>
</div>

<!-- ListView -->
<div id="imageTextListLandingSnap"  
    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('#imageTextListLandingTemplate'), 
        layout: { type: WinJS.UI.ListLayout } }">
</div>

CSS

/* overall list dimensions */
#imageTextListLandingSnap {
    margin-left: 110px;
    width: 323px; /* +31 px to account for margins applied by ListView */
    height: 633px;
}

/*-------------------------------------------------------------------------------------------*/
/* imageTextList-landingSnap - used in app template landing page snap view                   */
/*-------------------------------------------------------------------------------------------*/

/* 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;
}

/* margins between items */
#imageTextListLandingSnap .win-container {
    margin-top: 0px;
    margin-bottom: 0px;
}

    /* hide the hover outline for edge-to-edge items */
    #imageTextListLandingSnap .win-container:hover {
        outline: none;
    }

/* individual item dimensions */
.imageTextListLandingSnap {
    display: -ms-flexbox;
    padding: 5px;
    width: 282px;
    height: 50px;
}

    /* image: icon */
    .imageTextListLandingSnap img.imageTextListLandingSnapImage {
        width: 40px;
        height: 40px;
        margin: 5px;
    }

    /* Text line 1 */
    .imageTextListLandingSnap .imageTextListLandingSnapText {
        -ms-flex: 1;
        height: 40px;
        margin: 4px 5px 5px 5px;
        overflow: hidden;
    }

/* style the focus visual for edge-to-edge items */
#imageTextListLandingSnap .win-focusedoutline {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    left: 2px;
    top: 2px;
    z-index: 5;
}

相關主題

格線配置的項目範本

清單配置的項目範本