我想制作一款外观精致的appbar。有可能吗?
答案 0 :(得分:2)
设置Height和MinHeight对我有用:
XAML:
<AppBar Height="25" MinHeight="25"> ... </AppBar>
HTML / CSS:
.win-appbar.sleek {
height: 25px;
min-height: 25px;
}
<div id="sleekAppBar" data-win-control="WinJS.UI.AppBar" class="sleek"
data-win-options=""> ... </div>
答案 1 :(得分:1)
让我们以不同的方式思考。
为什么要让AppBar保持相同的尺寸?原因是,您的应用程序将在视觉上与Windows 8生态系统的其余部分保持一致。我不是说你不能改变AppBar;我只是说你最好有充分的理由。
如何自定义AppBar?这是关于该主题的整个博客:http://blog.jerrynixon.com/2012/10/walkthrough-windows-8-appbar-you-might.html