0
Navigation Guidelines確實提到我們可以在導航欄(頂部應用程序欄)中爲按鈕包含縮略圖。我搜索了例子,但沒有發現。 我已經創建了一個基本的頂級應用程序欄。在Windows 8中帶有縮略圖的導航欄8
有人可以幫我嗎?
Navigation Guidelines確實提到我們可以在導航欄(頂部應用程序欄)中爲按鈕包含縮略圖。我搜索了例子,但沒有發現。 我已經創建了一個基本的頂級應用程序欄。在Windows 8中帶有縮略圖的導航欄8
有人可以幫我嗎?
帶縮略圖的Appbar不需要任何特殊代碼。檢查下面給出的代碼。你可以把任何東西放在Grid
之內。
<Page.TopAppBar>
<AppBar Height="180" Background="Tan">
<StackPanel Orientation="Horizontal">
<Grid Height="160" Width="200" Background="Red" Margin="10"/>
<Grid Height="160" Width="200" Background="Green" Margin="10"/>
<Grid Height="160" Width="200" Background="Yellow" Margin="10"/>
<Grid Height="160" Width="200" Background="Blue" Margin="10"/>
</StackPanel>
</AppBar>
</Page.TopAppBar>