c# 4.0 - Excel files and Doc files support in Windows Phone Emulator -


i using windows phone 8, visual studio 2013,
here getting excel files , doc files response.
these files supported in emulator?
want show them in user interface.
thanks!!

this code:

void somemethod() {     uri uri = new uri("https://www.abc.com/def/xyz");     webclient wc = new webclient();     wc.downloadstringasync(uri);     wc.downloadstringcompleted += wc_downloadstringcompleted; }  void wc_downloadstringcompleted(object sender, downloadstringcompletedeventargs e) {     string result = e.result.tostring();     messagebox.show(result); } 

use launcher.launchfileasync(istoragefile) open excel file using phones default excel app.


Comments

Popular posts from this blog

windows - Single EXE to Install Python Standalone Executable for Easy Distribution -

c# - Access objects in UserControl from MainWindow in WPF -

javascript - How to name a jQuery function to make a browser's back button work? -