Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When you right-click the Skype icon in the taskbar while Skype is running, it has a little group in the "CloseWindow" popup thing titled Tasks, which contains options to sign out or quit Skype.

enter image description here

How would I go about doing this in C#? Thanks.

share|improve this question
I just wanted to note that in all of your question you did not mark anyone's answer. Sometimes no one helps you and you can't, but if someone's answer did help you, be sure to click the little check mark to mark their answer as the solution. This will allow other people who view your question to easily find the solution that works for them. – JABFreeware Jan 23 at 2:28
Ok, sorry. I will :) – Toby Person Jan 24 at 21:08

This question has an open bounty worth +50 reputation from Danny Beckett ending in 7 days.

One or more of the answers is exemplary and worthy of an additional bounty.

3 Answers

up vote 2 down vote accepted

You need to use Microsofts Windows API Code Pack. For an example on the exact way to implement it in your case, this tutorial will guide you through all the steps! The tutorial will show you how to do make the same thing Skype and windows media player use very quickly.

Hope this helps!

share|improve this answer

Those are called "Jump Lists" do a little web searching. Also see this: http://archive.msdn.microsoft.com/WindowsAPICodePack

share|improve this answer

I answered a similar question here:

This feature is called a JumpList and is for Windows 7. It is part of the Microsoft API. How to use this with C# has been documented thoroughly here and here.

In order to be able to deal with Jumplist classes in Windows Forms, you'd have to include these DLLs (Microsoft.WindowsAPICodePack.dll and Microsoft.WindowsAPICodePack.Shell.dll) in your project. You can get them from this CodeProject project or you can download the Open source library from WindowsAPICodePack which includes the source code that can be used to access Windows 7 and Windows Vista features. You will need to add two usings at the top of your code:

using Microsoft.WindowsAPICodePack.Taskbar;
using Microsoft.WindowsAPICodePack.Shell;

Any Jumplist consists of categories and each category has its own Jumptasks. There are two types of Jumptasks supported till now by WindowsAPICodePack; the JumplistLink and JumplistSeperator. A Jumptask represents an action to be performed by the user like openning a new instance of the application or launching another program. These Jumptasks are grouped in categories called JumplistCustomCategories.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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