摘要: 设置PivotItem项不可见,再可见 先移除,再添加 移除:PivotItem item;item = this.pivot.FindName("nextFiveDay") as PivotItem;this.pivot.Items.Remove(item); 添加this.pivot.Items.Add(item); 阅读全文
posted @ 2012-06-15 19:26 hack25 阅读(135) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Net;using System.Windows;using System.Windows.Controls;using System.Windows.Documents;using System.Windows.Ink;using System.Windows.Input;using System.Windows.Media;using System.Windows.Media.Animation;using System.Windows.Shapes;using System.IO.IsolatedStorage;using System 阅读全文
posted @ 2012-06-09 21:30 hack25 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 最近准备写一点WP7方面的东西。这个YLAD是最近才发现的,微软要求WP7的应用都要有一个About,用来说明一些应用的信息。之前写的应用是先做主要功能,最后草草做一个About页面了事。发现这个YLAD很方便,配置一个XML文件就可以了。项目也是在Codeplex上,地址:http://ylad.codeplex.com/这个东西可以用来显示关于、更新历史等一些信息,页面显示效果:使用方法如下:1、可以在codeplex上下载dll,自行添加引用,但不推荐这种方式。2、使用NuGet,可以很方便的进行安装。NuGet安装地址:http://nuget.org/安装NuGet后,打开YLAD的 阅读全文
posted @ 2012-05-19 13:39 hack25 阅读(184) 评论(1) 推荐(0) 编辑