WinRt BottomAppBar
BottomAppBarDemo.xaml
<Page.BottomAppBar>
<AppBar>
<StackPanel Orientation="Horizontal">
<StackPanel Tapped="Button_Tapped_1" Height="80" Margin="900,10,0,0" HorizontalAlignment="Left">
<Image x:Name="img_dl" Height="50" Width="50" Margin="0,0,0,0" Source="/images/login.png">
</Image>
<TextBlock x:Name="btn_dl" Text="登陆" FontSize="20" Margin="0,0,0,0" Height="27" TextAlignment="Center" Width="100"/>
</StackPanel>
<StackPanel Tapped="StackPanel_Tapped_9" Height="80" Margin="10,10,0,0" >
<Image x:Name="img_d2" Height="50" Width="50" Margin="0,0,0,0" Source="/images/头像2_03.png">
</Image>
<TextBlock x:Name="btn_d2" Text="个人信息" FontSize="20" Margin="0,0,0,0" Height="27" TextAlignment="Center" Width="100"/>
</StackPanel>
<StackPanel Tapped="StackPanel_Tapped_11" Height="80" Margin="10,10,0,0" >
<Image x:Name="img_cc" Height="50" Width="50" Margin="0,0,0,0" Source="/images/shoucang.png">
</Image>
<TextBlock x:Name="btn_cc" Text="收藏服务" FontSize="20" Margin="0,0,0,0" Height="27" TextAlignment="Center" Width="100"/>
</StackPanel>
<StackPanel Tapped="StackPanel_Tapped_10" Height="80" Margin="10,10,0,0" >
<Image x:Name="img_tj" Height="50" Width="50" Margin="0,0,0,0" Source="/images/tuijianfuwu.png">
</Image>
<TextBlock x:Name="btn_tj" Text="推荐服务" FontSize="20" Margin="0,0,0,0" Height="27" TextAlignment="Center" Width="100"/>
</StackPanel>
</StackPanel>
</AppBar>
</Page.BottomAppBar>
WinRt BottomAppBar的更多相关文章
- Cocos2d-x项目移植到WinRT/Win8小记
Cocos2d-x项目移植到WinRT/Win8小记 作者: K.C. 日期: 11/17/2013 Date: 2013-11-17 23:33 Title: Cocos2d-x项目移植到WinRT ...
- WinRT Toolkit 介绍--Control篇
WinRT toolkit是组针对Windows Runtime XAML开发的一系列Control,extension和helper类.它和Windows Phone Toolkit一样,也是由很多 ...
- WinRT自定义控件第一 - 转盘按钮控件
之前的文章中,介绍了用WPF做一个转盘按钮控件,后来需要把这个控件移植到WinRT时,遇到了很大的问题,主要原因在于WPF和WinRT还是有很大不同的.这篇文章介绍了这个移植过程,由于2次实现的控件功 ...
- winRT Com组件开发流程总结
winRT Com组件开发: 1.编辑idl文件,winRT COM的idl文件与win32的idl文件有差异,如下: interface ItestWinRTClass; runtimeclass ...
- 深入探究 WinRT 和 await
在最近发布的使用 Windows 运行时中异步性来始终保持应用程序能够快速流畅地运行这篇博文中,包含了一些如何在 C# 和 Visual Basic 中使用 await 关键字的示例,允许开发人员在使 ...
- 闲聊桌面应用开发[Win16->Win32->ATL/WTL/MFC->WinForm->WPF/Silverlight/WinRT]
闲来无聊,正好小组人员讨论到桌面的开发,那把笔者接触的WIndows平台下的几个主要的发展过程聊一聊. 主要从概述,参考资料,图书等几个方面说起. 所有的界面开发都会涉及如下的几个方面的内容: v 控 ...
- winrt控件
http://www.mindscapehq.com/products/metroelements 常见的翻书,相册,图表,时间组件 demo下载地址http://assets.mindscape.c ...
- Thread.Sleep in WinRT
Thread.Sleep in WinRT static void Sleep(int ms) { new System.Threading.ManualResetEvent(false).Wa ...
- winform,wpf,winrt获取屏幕分辨率
winform 当前的屏幕除任务栏外的工作域大小 this.Width = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Widt ...
随机推荐
- Jquery动态进行图片缩略
//页面加载完执行resizeImage()函数 $(document).ready(resizeImage()); function resizeImage(){ $(".pic a im ...
- 织梦DEDECMS文章、栏目页获取当前页面顶级栏目名称的方法
在用织梦做一些项目时,时常会碰到需要在当前页面调用顶级栏目名称的时候,织梦默认{dede:field name='typename' /} 可以获取当前栏目页上一级栏目的名称,而不是当前栏目顶级栏目名 ...
- sublime 安装常用插件
1.先要安装Package Control ,ctr+` 打开控制台,复制安装脚本,脚本在https://packagecontrol.io/installation#st3获取. 2.安装插件,ct ...
- JAVA中继承时方法的重载(overload)与重写/覆写(override)
JAVA继承时方法的重载(overload)与重写/覆写(override) 重载-Override 函数的方法参数个数或类型不一致,称为方法的重载. 从含义上说,只要求参数的个数或参数的类型不一致就 ...
- GridView内容<br />换行
if (e.Row.RowType == DataControlRowType.DataRow) { e.Row.Cells[].Text = Server.HtmlDecode(e.Row.Cell ...
- ios下,对于position:fixed支持不完美的额解决方案
ios下,当有文本框时,会调用输入法,而这个时候,定位(fixed)在底部的东西,就会被弹上例,离底部有段距离,这算是个坑了. 我的解决方案是这样的. 除了定位在底部的元素外,用一个大div把其他元素 ...
- 如何正确地使用Python的属性和描述符
关于@property装饰器 在Python中我们使用@property装饰器来把对函数的调用伪装成对属性的访问. 那么为什么要这样做呢?因为@property让我们将自定义的代码同变量的访问/设定联 ...
- ASP.NET MVC开发微信(四)
- 树状数组POJ2352星星
http://poj.org/problem?id=2352 这道题的题意对于住学者应该比较难理解,但是如果弄明白他的意思的话,你就会发现这就是赤裸裸的树状数组,哎,欺负我不懂是吧,当时读题读啦好久, ...
- HDU2176尼姆博弈
HDU2176 http://acm.hdu.edu.cn/showproblem.php?pid=2176 假设有3个数,a[0],a[1],a[2];那么ans=a[0]^a[1]^a[2];若a ...