0
SemanticZoom 내에서 ListView를 사용하는 데 문제가 있습니다. 설명하기는 어렵지만 왼쪽에 ListView를 "접착"할 수 없습니다.Semanticzoom 내 목록보기
SemanticZoom 내에서 ListView를 사용하면 ListView를 손가락으로 움직일 수 있습니다. 시맨틱 줌 기능이 없으면 왼쪽으로 움직이지 않습니다.
복제 :
- 이 SemanticZoom을 만들고 ZoomedInView는
- 실행 ListViewItems의 무리와 함께있는 ListView를 만들 whitin 시도 (내 경우 범용 앱에서) 새 Windows 스토어 응용 프로그램 만들기 손가락
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<SemanticZoom HorizontalAlignment="Left">
<SemanticZoom.ZoomedInView>
<ListView Width="600" HorizontalAlignment="Left" >
<ListViewItem>Hello World</ListViewItem>
<ListViewItem>Hello World</ListViewItem>
<ListViewItem>Hello World</ListViewItem>
<ListViewItem>Hello World</ListViewItem>
</ListView>
</SemanticZoom.ZoomedInView>
<SemanticZoom.ZoomedOutView>
<GridView />
</SemanticZoom.ZoomedOutView>
</SemanticZoom>
</Grid>
설정 번째로 주위의 목록보기 이동 ManipulationMode를 "None"으로 설정하면 왼쪽에서 오른쪽으로 만 이동하지만 왼쪽으로는 이동하지 않습니다. 사전에
감사합니다, 릭