2015元旦第一弹——WP8.1应用程序栏(C#后台代码编写)
//第一次写博文,以后还请各位道友互相关照哈。废话不多说,直接进入正题。
相信大家对于如何在XAML添加应用程序栏应该很清楚,不清楚的话,可以打开新建个Pviot应用 就有系统自带的菜单栏。 本文主要讲的是如何在C#后台进行动态添加应用程序栏以及菜单栏最小化。
首先新建一个空白应用,然后在Gird下键入以下代码:
<Pivot Name="pivot" SelectionChanged="Pivot_SelectChanged">
<PivotItem Header="First"> </PivotItem> <PivotItem Header="Second"> </PivotItem> <PivotItem Header="Third"> </PivotItem>
</Pivot>
然后在MainPage.xaml.cs定义3个菜单:
CommandBar refresh;
CommandBar add;
CommandBar min;
之后,我们定一个方法PrepareAppBars()来实现应用程序栏,这个方法要在OnNavigatedTo()或者构造函数内或者页面加载内实现,这里我选择在OnNavigatedTo()内实现:
protected override void OnNavigatedTo(NavigationEventArgs e)
{
// TODO: Prepare page for display here.
PrepareAppBars();
// TODO: If your application contains multiple pages, ensure that you are
// handling the hardware Back button by registering for the
// Windows.Phone.UI.Input.HardwareButtons.BackPressed event.
// If you are using the NavigationHelper provided by some templates,
// this event is handled for you.
}
private void PrepareAppBars()
{ //Pivot第一个页面菜单栏
refresh = new CommandBar();
refresh.IsOpen = true;
AppBarButton RefreshBtn = new AppBarButton() { Icon = new BitmapIcon() { UriSource = new Uri("ms-appx:///Assets/refresh.png") } };
RefreshBtn.Label = "刷新";
RefreshBtn.Click += RefreshBtn_Click;
RefreshBtn.IsEnabled = true; // 相似的第二个菜单
AppBarButton SecondBtn = new AppBarButton() { Icon = new BitmapIcon() { UriSource = new Uri("ms-appx:///Assets/add.png") } };
SecondBtn.Label = "添加";
SecondBtn.Click += SecondBtn_Click;
SecondBtn.IsEnabled = true; AppBarButton secondCommand = new AppBarButton();
secondCommand.Label = "菜单一";
secondCommand.Click += secondCommand_Click; AppBarButton secondCommand2 = new AppBarButton();
secondCommand2.Label = "菜单二";
secondCommand2.Click += secondCommand2_Click;
refresh.SecondaryCommands.Add(secondCommand);
refresh.SecondaryCommands.Add(secondCommand2); refresh.PrimaryCommands.Add(RefreshBtn);
refresh.PrimaryCommands.Add(SecondBtn); //Pivot第二个页面菜单栏
add = new CommandBar();
add.IsOpen = true; AppBarButton Pivot_SecondAppBar = new AppBarButton() { Icon = new BitmapIcon() { UriSource = new Uri("ms-appx:///Assets/add.png") } };
Pivot_SecondAppBar.Label = "添加";
Pivot_SecondAppBar.Click += Pivot_SecondAppBar_Click;
SecondBtn.IsEnabled = true;
add.PrimaryCommands.Add(Pivot_SecondAppBar); //Pivot第三个页面菜单栏最小化
min = new CommandBar();
AppBarButton thirdCommand = new AppBarButton();
thirdCommand.Label = "菜单三";
thirdCommand.Click += thirdCommand_Click;
min.SecondaryCommands.Add(thirdCommand); min.ClosedDisplayMode = AppBarClosedDisplayMode.Minimal; }
接着,我们定义 应用程序栏的所有单机事件:
void thirdCommand_Click(object sender, RoutedEventArgs e)
{
MessageDialog msg = new MessageDialog("菜单三");
msg.ShowAsync();
} void Pivot_SecondAppBar_Click(object sender, RoutedEventArgs e)
{
MessageDialog msg = new MessageDialog("Pivot第二个页面添加");
msg.ShowAsync();
} void SecondBtn_Click(object sender, RoutedEventArgs e)
{
MessageDialog msg = new MessageDialog("添加");
msg.ShowAsync();
} void secondCommand2_Click(object sender, RoutedEventArgs e)
{
MessageDialog msg = new MessageDialog("菜单二");
msg.ShowAsync();
} void secondCommand_Click(object sender, RoutedEventArgs e)
{
MessageDialog msg = new MessageDialog("菜单一");
msg.ShowAsync();
} void RefreshBtn_Click(object sender, RoutedEventArgs e)
{
MessageDialog msg = new MessageDialog("刷新");
msg.ShowAsync();
}
做完这些之后呢,我们就可以在Pivot_SelectChanged页面选择的时候加载指定的应用程序栏了:
private void Pivot_SelectChanged(object sender, SelectionChangedEventArgs e)
{
switch (pivot.SelectedIndex)
{
case 0:
BottomAppBar = refresh;
break;
case 1:
BottomAppBar = add;
break;
case 2:
BottomAppBar = min;
break;
}
}
2015元旦第一弹——WP8.1应用程序栏(C#后台代码编写)的更多相关文章
- JVM第一弹
JVM第一弹 基本概念 JVM是可运行java代码的假想计算机,包括一套字节码指令集,一组寄存器,一个栈,一个垃圾回收.堆和一个存储方法域.JVM是运行在操作系统之上的,它与硬件没有直接的交互. 运行 ...
- 微信小程序登录JAVA后台
代码地址如下:http://www.demodashi.com/demo/12736.html 登录流程时序登录流程时序 具体的登录说明查看 小程序官方API 项目的结构图: springboot项目 ...
- Java基础-程序流程控制第一弹(分支结构/选择结构)
Java基础-程序流程控制第一弹(分支结构/选择结构) 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 一.if语句 1>.if语句的第一种格式 if(条件表达式){ 语句体: ...
- 我的长大app开发教程第一弹:Fragment布局
在接下来的一段时间里我会发布一个相对连续的Android教程,这个教程会讲述我是如何从零开始开发“我的长大”这个Android应用. 在开始之前,我先来介绍一下“我的长大”:这是一个校园社交app,准 ...
- typecho流程原理和插件机制浅析(第一弹)
typecho流程原理和插件机制浅析(第一弹) 兜兜 393 2014年03月28日 发布 推荐 5 推荐 收藏 24 收藏,3.5k 浏览 虽然新版本0.9在多次跳票后终于发布了,在漫长的等待里始终 ...
- 《ArcGIS Engine+C#实例开发教程》第一讲桌面GIS应用程序框架的建立
原文:<ArcGIS Engine+C#实例开发教程>第一讲桌面GIS应用程序框架的建立 摘要:本讲主要是使用MapControl.PageLayoutControl.ToolbarCon ...
- Hadoop基础-MapReduce的工作原理第一弹
Hadoop基础-MapReduce的工作原理第一弹 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 在本篇博客中,我们将深入学习Hadoop中的MapReduce工作机制,这些知识 ...
- Spring Boot 第一弹,问候一下世界!!!
持续原创输出,点击上方蓝字关注我吧 目录 前言 什么是Spring Boot? 如何搭建一个Spring Boot项目? 第一个程序 Hello World 依赖解读 什么是配置文件? 什么是启动类? ...
- 2015元旦来个炫的html5特效
效果网址:http://keleyi.com/keleyi/phtml/html5/5.htm 代码: <!DOCTYPE html> <html xmlns="http: ...
随机推荐
- Erlang中日志管理
http://blog.sina.com.cn/s/blog_96b8a1540101317g.html 一.基本概念 在Erlang中,通过两个概念管理错误事情:事件管理器(event manage ...
- Adaptive partitioning scheduler for multiprocessing system
A symmetric multiprocessing system includes multiple processing units and corresponding instances of ...
- 源码分析之Dictionary笔记
接下来我们一步步来熟悉 Dictionary的底层结构实现,下面的MyDictionary等同于源码中的Dictionary看待. 首先我们定义一个类 MyDictionary,类中定义一个结构Ent ...
- android游戏开发系列(2)——背景音乐播放技术
背景音乐通常播放时间较长,且文件体积也相对较大.这类资源如果放在内存中,一方面给硬件资源本身就很紧缺的手机造成了负担,另一方面通常也没有这方面的需求,放在内存中,在调用时播放速度较快,而长时音乐文件通 ...
- MongoDB 通过自带工具命令进行备份表,再将备份表还原出数据
创建一个bat文件 在其中输入以下3行 第1行进入工具mongodump所在的目录 第2行 将Adam数据库里面的 第3行 将上面存在C:\Data\Dump\Adam\文件夹里面的TBLQuickS ...
- Linux性能测试 top衍生命令 atop/htop/slaptop
1. Atop Atop 是一个类似 top 的工具,但比 top 更有料.通过 Atop,你能够监视 Linux 系统的性能状况,包括进程活动.CPU.内存.硬盘.网络等方面的使用情况等. 2. h ...
- PMP项目经理认证
PMP认证是由美国项目管理学会(PMI)在全球范围内推出的针对项目经理的资格认证体系,通过该认证的项目经理叫"PMP",即Project Management Profession ...
- POCO文档翻译:POCO C++库入门指南
内容目录 介绍 Foundation库 XML库 Util库 Net库 将这些东西组合到一起 介绍 POCO C++库是一组开源C++类库的集合,它们简化及加速了用C++来开发以网络功能为核心的可移植 ...
- python 教程 第八章、 第一个python程序
第八章. 第一个python程序 #!/usr/bin/env python import os import sys import time source = [r'G:\s1', r'G:\s2' ...
- 【Android发展】它Fragment发展1
一直知道Fragment非常强大.可是一直都没有去学习,如今有些空暇的时间,所以就去学习了一下Fragment的简单入门.我也会把自己的学习过程写下来,假设有什么不足的地方希望大牛指正,共同进步. 一 ...