JumpList.AddToRecentCategory 方法

定义

将指定的项添加到跳转列表的“最近”类别中。

重载

AddToRecentCategory(String)

将指定的项路径添加到跳转列表的“最近”类别中。

AddToRecentCategory(JumpPath)

将指定的跳转路径添加到跳转列表的“最近”类别中。

AddToRecentCategory(JumpTask)

将指定的跳转任务添加到跳转列表的“最近”类别中。

AddToRecentCategory(String)

将指定的项路径添加到跳转列表的“最近”类别中。

public:
 static void AddToRecentCategory(System::String ^ itemPath);
[System.Security.SecurityCritical]
public static void AddToRecentCategory (string itemPath);
public static void AddToRecentCategory (string itemPath);
[<System.Security.SecurityCritical>]
static member AddToRecentCategory : string -> unit
static member AddToRecentCategory : string -> unit
Public Shared Sub AddToRecentCategory (itemPath As String)

参数

itemPath
String

要添加到跳转列表中的路径。

属性

注解

最近 类别的内容由 Windows shell 管理。 若要在跳转列表中显示最近使用的项,请将 ShowRecentCategory 属性设置为 true

可以调用AddToRecentCategory(String)该方法来请求 Windows shell 向 “最近”项列表添加项路径。 如果应用程序未注册以处理该项的文件类型,则它不会显示在 “最近” 列表中,调用 AddToRecentCategory(String) 将无提示失败。

另请参阅

适用于

AddToRecentCategory(JumpPath)

将指定的跳转路径添加到跳转列表的“最近”类别中。

public:
 static void AddToRecentCategory(System::Windows::Shell::JumpPath ^ jumpPath);
[System.Security.SecurityCritical]
public static void AddToRecentCategory (System.Windows.Shell.JumpPath jumpPath);
public static void AddToRecentCategory (System.Windows.Shell.JumpPath jumpPath);
[<System.Security.SecurityCritical>]
static member AddToRecentCategory : System.Windows.Shell.JumpPath -> unit
static member AddToRecentCategory : System.Windows.Shell.JumpPath -> unit
Public Shared Sub AddToRecentCategory (jumpPath As JumpPath)

参数

jumpPath
JumpPath

要添加到跳转列表中的 JumpPath

属性

注解

最近 类别的内容由 Windows shell 管理。 若要在跳转列表中显示最近使用的项,请将 ShowRecentCategory 属性设置为 true

可以调用AddToRecentCategory(JumpPath)该方法来请求 Windows shell 将指定的跳转路径添加到 “最近”项列表中。 如果应用程序未注册以处理该项的文件类型,则它不会显示在 “最近” 列表中,调用 AddToRecentCategory(JumpPath) 将无提示失败。

另请参阅

适用于

AddToRecentCategory(JumpTask)

将指定的跳转任务添加到跳转列表的“最近”类别中。

public:
 static void AddToRecentCategory(System::Windows::Shell::JumpTask ^ jumpTask);
[System.Security.SecurityCritical]
public static void AddToRecentCategory (System.Windows.Shell.JumpTask jumpTask);
public static void AddToRecentCategory (System.Windows.Shell.JumpTask jumpTask);
[<System.Security.SecurityCritical>]
static member AddToRecentCategory : System.Windows.Shell.JumpTask -> unit
static member AddToRecentCategory : System.Windows.Shell.JumpTask -> unit
Public Shared Sub AddToRecentCategory (jumpTask As JumpTask)

参数

jumpTask
JumpTask

要添加到跳转列表中的 JumpTask

属性

注解

最近 类别的内容由 Windows shell 管理。 若要在跳转列表中显示最近使用的项,请将 ShowRecentCategory 属性设置为 true

可以调用AddToRecentCategory(JumpTask)该方法来请求 Windows shell 将指定的跳转任务添加到 “最近”项列表中。

另请参阅

适用于