摘要: Windows os以下词表达的是同一个概念windows store appwindows metro appwindows modern appwindows runtime appwindows phone oswindows phone 8.0以下词表达的是同一个概念windows phon... 阅读全文
posted @ 2014-06-09 16:47 金靴欧文 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 因为时代在变迁,Store Apps这个概念很容易引起混淆在过去,windows phone 8.0时代windows store apps指的是windows metro style 的应用,这些应用主要是运行在以下两个OSwindows rt 8/8.1 硬件载体是平板,如:sureface r... 阅读全文
posted @ 2014-06-07 00:35 金靴欧文 阅读(563) 评论(0) 推荐(0) 编辑
摘要: 做出了一个愉快的决定,以后会将博客从CSDN迁移到CNBLOGS旧地址:http://blog.csdn.net/fifa0329,文章并不多原因如下:我再次出现了该博客违反了网站规则被关闭的问题。原因应该是我在CSDN上的账号遭到了盗用,而我也无心再去好好管理我的账号安全问题,罢了吧CSDN日志的... 阅读全文
posted @ 2014-06-06 22:13 金靴欧文 阅读(181) 评论(1) 推荐(0) 编辑
摘要: 需求如下,项目需要将一段xml字符串中的信息提取出来 1397045886045 2014-04-09 20:12:29 1.0.0 0 成功 false false 1 7 1 7 2 0 20 ... 阅读全文
posted @ 2014-04-10 10:51 金靴欧文 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 我们在平时的WP使用过程中,会遇到一个问题应用在切出,切回后,有时候,会显示“正在恢复”,并等待时间较长,才能回到用户切出时候的画面,但是这种情况并非常见,偶尔发生有时候,直接回到切出时的画面,反应还蛮迅速的这是为什么那?我做了研究,分析如下:首先,我们看一下WP的生命周期(详情见:App acti... 阅读全文
posted @ 2014-04-08 17:03 金靴欧文 阅读(268) 评论(0) 推荐(0) 编辑
摘要: public string GetSSIDName(){ foreach (var network in new NetworkInterfaceList()) { if ( (network.InterfaceType == NetworkInter... 阅读全文
posted @ 2014-04-03 16:29 金靴欧文 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 我们在WP项目中采用页面导航时候,经常会使用以下代码NavigationService.Navigate(new Uri("/Page1.xaml",UriKind.Relative));但是,有的时候会出现错误:"Error 1 An object reference is required fo... 阅读全文
posted @ 2013-09-02 19:40 金靴欧文 阅读(804) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace DataStructure{ class MySin... 阅读全文
posted @ 2013-08-22 20:31 金靴欧文 阅读(250) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Diagnostics;using System.Linq;using System.Text;using System.Threading.Tasks;namespace Data... 阅读全文
posted @ 2013-08-14 21:04 金靴欧文 阅读(283) 评论(0) 推荐(0) 编辑
摘要: 一、用属性代替可访问的字段 1、.NET数据绑定只支持数据绑定,使用属性可以获得数据绑定的好处; 2、在属性的get和set访问器重可使用lock添加多线程的支持。 二、readonly(运行时常量)和const(编译时常量) 1、const只可用于基元类型、枚举、字符串,而readonly则可... 阅读全文
posted @ 2013-08-10 10:17 金靴欧文 阅读(235) 评论(0) 推荐(0) 编辑