I am writing a WPF application and I want to show a Windows task dialog in it. I have used a home grown .Net wrapper around the Windows TaskDialogIndirect
P/Invoke function, and I used the OOkii dialogs NuGet package, but both fail as soon as the application is running as a 64 bit process.
I need "AnyCPU", because my code is a MS Office Add-in, and it should be able to run in 32 Bit as well as 64 Bit MS Outlook.
I want to avoid to roll my own task dialog as a WPF window, so my question: Is there a .Net library/control suite that offers Windows Task Dialog functionality and also supports 64 bit?