我發展我的第一個Windows Phone 7應用程序內,我必須添加一個應用程序欄用圖標。的Windows Phone 7不顯示圖標按鈕應用程序任務
我提到了這個「如何」:http://msdn.microsoft.com/en-us/library/ff431786(VS.92).aspx(「創建的XAML應用程序欄」段落)
但是當我運行模擬器我看不到incons:我看到X黑圈的中心,事件ApplicationBarIconButton_Click正確引發。
我使用的是從WP7AppBarIcons.zip樣品圖標,我的代碼貼在下面:
<phone:PhoneApplicationPage.ApplicationBar>
<shell:ApplicationBar IsVisible="True" IsMenuEnabled="True">
<shell:ApplicationBarIconButton IconUri="/images/appbar.transport.play.rest.png" Text="Home" Click="ApplicationBarIconButton_Click"/>
<shell:ApplicationBarIconButton IconUri="/images/appbar.favs.rest.png" Text="Preferiti" Click="ApplicationBarIconButton_Click"/>
<shell:ApplicationBarIconButton IconUri="/images/appbar.questionmark.rest.png" Text="About" Click="ApplicationBarIconButton_Click"/>
<shell:ApplicationBar.MenuItems>
<shell:ApplicationBarMenuItem Text="MenuItem 1"/>
<shell:ApplicationBarMenuItem Text="MenuItem 2"/>
</shell:ApplicationBar.MenuItems>
</shell:ApplicationBar>
</phone:PhoneApplicationPage.ApplicationBar>
很顯然,我有一個名爲「圖像」包含提到的48×48的圖標的根解決方案文件夾。
非常感謝!