UWP DataTransferManager ShowShareUI() Opens Sharing Dialog with “This app can't share right now” and Closes it Immediately After
问题 I am trying to share a file from my UWP app sandbox running on Windows 10 desktop. Following MS documentation on this page, the implementation seem to be fairly straight forward; however, I am having issues https://docs.microsoft.com/en-us/windows/uwp/app-to-app/share-data I created DataTransferManager and attached DataRequested event in c-tor of my class as per explanation in the article: DataTransferManager dataTransferManager; public MainPage() { this.InitializeComponent(); ...