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
Post a Comment