JumpList 构造函数

定义

初始化 JumpList 类的新实例。

重载

JumpList()

初始化 JumpList 类的新实例。

JumpList(IEnumerable<JumpItem>, Boolean, Boolean)

使用指定的参数初始化 JumpList 类的新实例。

JumpList()

初始化 JumpList 类的新实例。

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

适用于

JumpList(IEnumerable<JumpItem>, Boolean, Boolean)

使用指定的参数初始化 JumpList 类的新实例。

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)

参数

items
IEnumerable<JumpItem>

在跳转列表中显示的 JumpItem 对象的集合。

showFrequent
Boolean

一个指示常用项是否显示在跳转列表中的值。

showRecent
Boolean

一个指示最近使用的项是否显示在跳转列表中的值。

属性

注解

“最近”和 “频繁” 类别通常包含许多相同的跳转项。 因此,应用程序通常会在跳转列表中显示 “最近 ”或“ 频繁 ”类别,但不能同时显示这两者。

另请参阅

适用于