I have a WPF application which uses a JumpList (Recent only). Everything works perfectly until I deploy it using ClickOnce - the JumpList simply does not show (BTW, it does not show as well when running under VS debugger.

Anybody knows if it is possible to have JumpList working from a ClickOnce deployed app?

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

I asked the ClickOnce product lead if this was possible, and I regret to tell you that it's not.

link|improve this answer
Please leave off the "Hi", and the signature. – John Saunders May 29 '10 at 22:04
feedback

I just tested a JumpList with .NET 4, Windows 7, and ClickOnce. It worked perfectly on the first try.

link|improve this answer
feedback

You could try using the Windows API Code Pack instead of the jumplist capabilities that are built in to WPF. You will still have some hoops to jump through (editing your copy of the Code Pack) but it will be possible at least.

link|improve this answer
I wouldn't recommend the Windows API Code pack at all. It's buggy, the API is bad and it seems unmaintained. If you are looking for something that also works in .NET 3.5 go for Microsoft.Windows.Shell instead, the API is almost 100% compatible with System.Windows.Shell code.msdn.microsoft.com/WPFShell/Release/ProjectReleases.aspx – Anders Rune Jensen May 7 '11 at 22:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.