首页 > 代码库 > WP8 学习 ApplicationBar 的创建 XAML代码

WP8 学习 ApplicationBar 的创建 XAML代码

 1 phone:PhoneApplicationPage.ApplicationBar>   2         <shell:ApplicationBar Opacity="0.1" IsVisible="True" IsMenuEnabled="True" Mode="Default" BackgroundColor="#FFF5F5E4" ForegroundColor="#FF12B295">   3             <shell:ApplicationBarIconButton IsEnabled="True" IconUri="/Assets/AppBar/back.png" Text="后退" Click="ApplicationBarIconButton_Click"/>   4             <shell:ApplicationBarIconButton x:Name="wangzhan" Click="wangzhan_Click" IconUri="/Assets/AppBar/folder.png" IsEnabled="True" Text="网址栏"/>   5             <shell:ApplicationBarIconButton x:Name="fore" Click="fore_Click" IconUri="/Assets/AppBar2/next.png" IsEnabled="True" Text="前进"/>   6             <shell:ApplicationBar.MenuItems>   7                 <shell:ApplicationBarMenuItem IsEnabled="True" Text="关于" Click="ApplicationBarMenuItem_Click"/>   8             </shell:ApplicationBar.MenuItems>   9         </shell:ApplicationBar>  10     </phone:PhoneApplicationPage.ApplicationBar>  

 

WP8 学习 ApplicationBar 的创建 XAML代码