Jon Wiswall
Jon Wiswall
The implementation _works_ for Win32 apps, but uses the wrong window for parenting the UI, as you've found. I filed http://task.ms/49689617 for us to track the work internally, and I've...
I'm trying this myself right now. Yes, you need to `IInitializeWithWindow` trick. My sample is packaged Win32 WinUI3 -> packaged Win32 WinUI3. The target app implements the `x-launch-results` protocol and...
To paraphrase the request: > When the app gets its ToastNotificationActionTrigger from a "background" tagged toast, it should be able to request access to the clipboard What if we had...
As with most Request prompts, it'd be a one time thing to enable, then the second request would be silent-accept. You still need to call it every time, but the...
Can you share either the output-log dump of `CredUIPromptForWindowsCredentials`, or enable first-chance exceptions to see what this API itself is returning? This is a Windows Platform API, not directly part...
FWIW, I put together a little WPF app using the `CredentialPicker` above, like this: ```c# private async void Clickery_Click(object sender, RoutedEventArgs e) { // Show a credential picker to acquire...
@Balkoth - I'm able to use the Windows credential picker API from WPF, WinUI3, unpackaged apps. See https://github.com/jonwis/jonwis.github.io/tree/user/jonwis/credpicker/code/CredPickerSampleWinUI3/CredPickerSampleWinUI3 for the details. Can you try it out and see? That'd let...
FWIW, the .NET folks have this statement on SecureString - https://github.com/dotnet/platform-compat/blob/master/docs/DE0001.md - specifically, that it provides minimal actual value, and should not be used in new designs. I've asked the...
Sorry for the long delay on getting to this. The `IAppActivationArguments` interface uses metadata-based marshalling when sent between processes. While the metadata-based marshaller is not well documented (we'll fix this)...
Oh see also #2006 where @BenJKuhn talks about which files need to be retained vs copied. I have a _hunch_ that the "single file" `dotnet publish` mode is discarding the...