JumpList Constructors

Definition

Initializes a new instance of the JumpList class.

Overloads

JumpList()

Initializes a new instance of the JumpList class.

JumpList(IEnumerable<JumpItem>, Boolean, Boolean)

Initializes a new instance of the JumpList class with the specified parameters.

JumpList()

Initializes a new instance of the JumpList class.

public:
 JumpList();
[System.Security.SecurityCritical]
public JumpList ();
public JumpList ();
Public Sub New ()
Attributes

Applies to

JumpList(IEnumerable<JumpItem>, Boolean, Boolean)

Initializes a new instance of the JumpList class with the specified parameters.

public:
 JumpList(System::Collections::Generic::IEnumerable<System::Windows::Shell::JumpItem ^> ^ items, bool showFrequent, bool showRecent);
[System.Security.SecurityCritical]
public JumpList (System.Collections.Generic.IEnumerable<System.Windows.Shell.JumpItem> items, bool showFrequent, bool showRecent);
public JumpList (System.Collections.Generic.IEnumerable<System.Windows.Shell.JumpItem> items, bool showFrequent, bool showRecent);
[<System.Security.SecurityCritical>]
new System.Windows.Shell.JumpList : seq<System.Windows.Shell.JumpItem> * bool * bool -> System.Windows.Shell.JumpList
new System.Windows.Shell.JumpList : seq<System.Windows.Shell.JumpItem> * bool * bool -> System.Windows.Shell.JumpList
Public Sub New (items As IEnumerable(Of JumpItem), showFrequent As Boolean, showRecent As Boolean)

Parameters

items
IEnumerable<JumpItem>

The collection of JumpItem objects that are displayed in the Jump List.

showFrequent
Boolean

A value that indicates whether frequently used items are displayed in the Jump List.

showRecent
Boolean

A value that indicates whether recently used items are displayed in the Jump List.

Attributes

Remarks

The Recent and Frequent categories often contain many of the same jump items. As a result, applications typically display either the Recent or the Frequent category in the Jump List, but not both.

See also

Applies to