DarranRowe
DarranRowe
First, remember that "not supported" is not the same as "doesn't work". It normally means that Microsoft doesn't intend for it to work, but if it works then it is...
The difficulty here is what are you expecting with the behaviour of Application.LocalFolder. The documentation for [ApplicationData.Current](https://learn.microsoft.com/en-us/uwp/api/windows.storage.applicationdata.current?view=winrt-22621#windows-storage-applicationdata-current) states: "Provides access to the app data store associated with the app's app...
I have to admit, that is very surprising. https://github.com/microsoft/WindowsAppSDK/assets/52577874/c8862db3-d9c4-4b60-9112-cada778999d4 With that capability, I have no issues. Yes, I used a WinUI 3 C# project for this. I also followed your...
I personally don't see this. While it is a C++ application, the code that I used was: ``` void MainWindow::Click_Click(winrt::IInspectable const &, winrt::RoutedEventArgs const &) { std::thread t([this]() { auto...
@JaiganeshKumaran Since the extension stopped being distributed independently of Visual Studio, the project templates are updated inline with Visual Studio itself. I only see this change in the 17.8 previews,...
I don't see this in a C++ Windows API application running on Windows 11 22H2. Just to ask, since you don't mention it, but did you set the package to...
It is very unlikely that you have it set then. The default isn't partial trust, and it is a setting that you have to go out of your way to...
I know it is a silly suggestion, but have you tried caching the instance of AppInstance in your Application class, and then registering the [Activated](https://learn.microsoft.com/en-us/windows/windows-app-sdk/api/winrt/microsoft.windows.applifecycle.appinstance.activated?view=windows-app-sdk-1.4#microsoft-windows-applifecycle-appinstance-activated) event? I know the documentation...
Okay, finally, do you get the same result if you use Windows.ApplicationModel.AppInstance to handle the request instead? Yes, this is usable in a desktop application. I feel that this is...
Then let's take this outside of the realm of maybes and what ifs. I have adapted a Windows API application to register for sharing. It doesn't have the Windows App...