我有一个内容按钮作为集线器控件中我的集线器部分的标题。现在我想为这个控件启用语义缩放。所以我从http://code.msdn.microsoft.com/windowsapps/XAML-Hub-control-sample-5d116fa9下载了样本。但是因为我使用Button作为Header我无法应用样本中的代码。
那么如何使用按钮作为标题并使用语义缩放?
答案 0 :(得分:1)
不,当然可以。
<SemanticZoom>
<SemanticZoom.ZoomedInView>
<Hub>
<Hub.Header>
<Button>
Hello World
</Button>
</Hub.Header>
</Hub>
</SemanticZoom.ZoomedInView>
<SemanticZoom.ZoomedOutView>
<GridView />
</SemanticZoom.ZoomedOutView>
</SemanticZoom>
标题模板没有区别。
祝你好运!
答案 1 :(得分:0)