http://silverlightzxing.codeplex.com/
http://www.soulier.ch/?p=1275&lang=en
2012年10月31日 星期三
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: }
訂閱:
文章 (Atom)