C# Class Microsoft.WindowsAPICodePack.Taskbar.JumpList

Represents an instance of a Taskbar button jump list.
Mostra file Open project: pierresprim/Windows-API-Code-Pack Class Usage Examples

Public Methods

Method Description
CreateJumpList ( ) : JumpList

Create a JumpList for the application's taskbar button.

If there are any other child (top-level) windows for this application and they don't have a specific JumpList created for them, they all will share the same JumpList as the main application window. In order to have a individual JumpList for a top-level window, use the overloaded method CreateJumpListForIndividualWindow.

CreateJumpListForIndividualWindow ( string appId, IntPtr windowHandle ) : JumpList

Create a JumpList for the application's taskbar button.

CreateJumpListForIndividualWindow ( string appId, System.Windows.Window window ) : JumpList

Create a JumpList for the application's taskbar button.

Method Details

CreateJumpList() public static method

Create a JumpList for the application's taskbar button.
If there are any other child (top-level) windows for this application and they don't have a specific JumpList created for them, they all will share the same JumpList as the main application window. In order to have a individual JumpList for a top-level window, use the overloaded method CreateJumpListForIndividualWindow.
public static CreateJumpList ( ) : JumpList
return JumpList

CreateJumpListForIndividualWindow() public static method

Create a JumpList for the application's taskbar button.
public static CreateJumpListForIndividualWindow ( string appId, IntPtr windowHandle ) : JumpList
appId string Application Id for the individual window. This must be unique for each top-level window in order to have a individual JumpList.
windowHandle IntPtr Handle of the window associated with the new JumpList
return JumpList

CreateJumpListForIndividualWindow() public static method

Create a JumpList for the application's taskbar button.
public static CreateJumpListForIndividualWindow ( string appId, System.Windows.Window window ) : JumpList
appId string Application Id for the individual window. This must be unique for each top-level window in order to have a individual JumpList.
window System.Windows.Window WPF Window associated with the new JumpList
return JumpList