텍스트(앨범 트랙) 템플릿(HTML)
[ 이 문서는 Windows 런타임 앱을 작성하는 Windows 8.x 및 Windows Phone 8.x 개발자를 대상으로 합니다. Windows 10용으로 개발하는 경우에는 최신 설명서를 참조하세요.]
앨범 트랙의 트랙 변호와 제목이 포함된 항목을 정의합니다. 이 템플릿은 그리드 레이아웃이 있는 ListView에 사용됩니다. 추가 템플릿에 대해서는 그리드 레이아웃용 항목 템플릿 및 목록 레이아웃용 항목 템플릿을 참조하세요.
템플릿을 사용하려면
템플릿을 사용하려면 HTML 및 CSS 스타일을 프로젝트로 복사합니다. HTML은 템플릿과 함께 사용하도록 설계된 ListView를 포함합니다. HTML을 복사한 후에는 ListView 컨트롤의 itemDataSource를 앱의 데이터 원본에 설정하고 템플릿의 data-win-bind 특성을 업데이트하여 데이터 작업을 할 수 있게 합니다.
템플릿이 제대로 작동하도록 하려면 win-selectionstylefilled
클래스를 ListView에 할당합니다.
HTML
<!-- Item template -->
<div id="textAlbumTrackTemplate"
data-win-control="WinJS.Binding.Template">
<div class="textAlbumTrack">
<h2 class="textAlbumTrackNumber"
data-win-bind="innerText: index">
</h2>
<h2 class="textAlbumTrackTitle"
data-win-bind="innerText: text">
</h2>
</div>
</div>
<!-- ListView -->
<div id="textAlbumTrack"
class="win-selectionstylefilled"
style="position: relative; left: -1px; top: 131px; border: none"
data-win-control="WinJS.UI.ListView"
data-win-options="{ itemDataSource: list.dataSource,
itemTemplate: select('#textAlbumTrackTemplate'),
layout: { type: WinJS.UI.GridLayout } }">
</div>
CSS
/* overall list dimensions */
#textAlbumTrack {
width: 1366px;
height: 538px;
}
/*-------------------------------------------------------------------------------------------*/
/* text-track - used for Media player album tracks */
/*-------------------------------------------------------------------------------------------*/
/* 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;
}
/* style the focus visual for edge-to-edge items */
#textAlbumTrack .win-focusedoutline {
width: calc(100% - 4px);
height: calc(100% - 4px);
left: 2px;
top: 2px;
z-index: 5;
}
/* starting margin */
#textAlbumTrack .win-horizontal.win-viewport .win-surface {
margin: 0px 100px;
}
#textAlbumTrack .win-horizontal.win-viewport .win-container {
margin: 0px 10px;
}
/* hide the hover outline for edge-to-edge items */
#textAlbumTrack .win-container:hover {
outline: none;
}
/* individual item dimensions */
.textAlbumTrack {
display: -ms-flexbox;
width: 280px;
height: 36px;
padding: 2px 10px;
overflow: hidden;
}
/* text line 1 col 1*/
.textAlbumTrack .textAlbumTrackNumber {
width: 42px;
white-space: nowrap;
}
/* text line 1 col 2*/
.textAlbumTrack .textAlbumTrackTitle {
-ms-flex: 1;
white-space: nowrap;
}