顯示具有 windows phone 標籤的文章。 顯示所有文章
顯示具有 windows phone 標籤的文章。 顯示所有文章

2012年10月31日 星期三

QR code related on WIN 8

http://silverlightzxing.codeplex.com/


http://www.soulier.ch/?p=1275&lang=en

windows phone bitmap, image...

1:        Uri imageUri = new Uri("/Asset/Sample_Text.png", UriKind.Relative);  
2:        BitmapImage bitmap = new BitmapImage(imageUri);  

2012年10月30日 星期二

windows phone - opening a html file using webBrowser

1:        IsolatedStorageFile isoStore = IsolatedStorageFile.GetUserStoreForApplication();  
2:        if (isoStore.FileExists(mHtmlFilename))  
3:        {  
4:          Uri fileUri;  
5:          fileUri = new Uri(mHtmlFilename, UriKind.Relative);  
6:          webBrowser.Navigate(fileUri);  
7:        }