随笔分类 -  WP

WP runtime local setting
摘要:https://msdn.microsoft.com/en-us/library/windows/apps/windows.storage.applicationdata.localsettings.ASPxvar localSettings = Windows.Storage.Applicatio... 阅读全文
posted @ 2015-06-04 20:27 ximenchuixie 阅读(227) 评论(0) 推荐(0)
WP runtime 获取cookie
摘要:HttpBaseProtocolFilter httpBaseProtocolFilter = new HttpBaseProtocolFilter(); HttpCookieManager httpCookieManager = httpBaseProtoc... 阅读全文
posted @ 2015-06-04 20:25 ximenchuixie 阅读(225) 评论(0) 推荐(1)
WP runtime post 请求, json 解析
摘要:https://monkeyweekend.wordpress.com/2014/10/23/how-to-send-text-json-or-files-using-httpclient-postasync/using Windows.Web.Http;using Windows.Data.Jso... 阅读全文
posted @ 2015-06-04 14:08 ximenchuixie 阅读(234) 评论(0) 推荐(0)
WP8.1 页面跳转,overwrite后退键
摘要:In 8.1 we use the below code to navigate between pages:this.Frame.Navigate(typeof(PivotPage));In 8.1 we need to use the event to add hardware back eve... 阅读全文
posted @ 2014-09-09 21:26 ximenchuixie 阅读(446) 评论(3) 推荐(0)
WP 8.1 status bar
摘要:A status bar is the bar showing signal, battery and time on the top of the phone's screen. In WP8.1 we it's called status bar, but in WP8.0 it's calle... 阅读全文
posted @ 2014-09-09 21:24 ximenchuixie 阅读(336) 评论(0) 推荐(0)
WP8.1 发送邮件
摘要:Method 1:Windows.System.Launcher.LaunchUriAsync(new Uri("abc@outlook.com?subject=hello world&body=world"));Reference: http://dotnet.dzone.com/articles... 阅读全文
posted @ 2014-09-09 21:23 ximenchuixie 阅读(244) 评论(0) 推荐(0)
WP8.1 在默认浏览器中打开url
摘要:Windows.System.Launcher.LaunchUriAsync(new Uri("http://www.google.com"));PS: This is for Windows Runtime SDK 阅读全文
posted @ 2014-09-09 21:21 ximenchuixie 阅读(194) 评论(0) 推荐(0)
WP8.1 控件默认字体颜色 配置文件位置
摘要:C:\Program Files (x86)\Windows Phone Kits\8.1\Include\abi\Xaml\Design\generic.xaml可在App.xaml文件中override系统默认字体颜色等信息例:将默认的pivot header的选中状态的颜色改为黑色,未选中状态... 阅读全文
posted @ 2014-09-05 11:30 ximenchuixie 阅读(438) 评论(0) 推荐(0)
windows phone, 应用最大内存
摘要:windows phone应用最大内存为150M,当app运行时所占内存超过150M时app会自动退出(VS debug时不容易捕捉到这个内存超出异常)。【注】可通过配置增大最大内存 阅读全文
posted @ 2014-08-06 23:01 ximenchuixie 阅读(149) 评论(0) 推荐(0)