01 2013 档案
Path File URI
摘要:How to convert between URI and normal file path:Convert normal file path to URI:Uri uri = new Uri(@"c:\Documents\myfile");Convert URI to normal file p... 阅读全文
posted @ 2013-01-30 14:12 chuwachen 阅读(119) 评论(0) 推荐(0)
Programming tips
摘要:In a timer handler (function), we should set a flag to avoid function re-entering, for example:bool bProcessing = false;void onTimer(){if (bProcessing... 阅读全文
posted @ 2013-01-22 15:18 chuwachen 阅读(108) 评论(0) 推荐(0)
An easy way to customize a scrollbar for a control
摘要:If you want to customize a scrollbar for a control such as listbox as follows:You can define xaml as follows (wrap listbox with a scrollviewer): ... 阅读全文
posted @ 2013-01-21 17:17 chuwachen 阅读(103) 评论(0) 推荐(0)
How to resolve "valid signing identity not found" in provisioning profiles library
摘要:When creating certificate via KeyChain in an old mac, then you want to use it in a new mac, you may see the following warning "valid signing identity ... 阅读全文
posted @ 2013-01-14 11:58 chuwachen 阅读(118) 评论(0) 推荐(0)
How to distribute iOS app to device or app store or testflight
摘要:Prepare Provisioning profile:Keychain Access-->Certificate Assistant-->Request a Certificate from a Certificate Authority-->input email address (App I... 阅读全文
posted @ 2013-01-10 12:00 chuwachen 阅读(195) 评论(0) 推荐(0)