我正在嘗試發佈VS 2013 Update 2並構建示例通用應用程序。在Windows Phone中使用語義縮放
正如我發現的那樣,現在Windows Phone默認支持多點觸控,這意味着以前不可用的新控件。
我曾嘗試使用簡單的語義縮放測試
<SemanticZoom>
<SemanticZoom.ZoomedInView>
<GridView Background="Red" ScrollViewer.IsHorizontalScrollChainingEnabled="False" ScrollViewer.IsVerticalScrollChainingEnabled="False"/>
</SemanticZoom.ZoomedInView>
<SemanticZoom.ZoomedOutView>
<GridView Background="Black" ScrollViewer.IsHorizontalScrollChainingEnabled="False" ScrollViewer.IsVerticalScrollChainingEnabled="False"/>
</SemanticZoom.ZoomedOutView>
</SemanticZoom>
我怎樣才能做到這一點在Windows Phone模擬器?已經嘗試了多點觸控 - 沒有幫助
啊哈,我還以爲我需要通過代碼來控制它 - 太悲傷了...... – Cheese