How can I display documents (doc, docx, rtf) in an UWP app? The WebView
isn't able to do this.
Other options would be calling an external application with Windows.System.Launcher.LaunchUriAsync
(e.g. Word) or using a 3rd party library. The requirement is to have the data in the app, because you don't have control over it, if it's handled to another one. Another option would be to convert it to another format (e.g. PDF) which UWP can handle (not really).
Any ideas?