gpt4 book ai didi

c# - 每次我的 WPF 应用程序启动时,JumpList 都会重置

转载 作者:行者123 更新时间:2023-12-01 18:51:56 27 4
gpt4 key购买 nike

我在使用 WPF 时遇到了一些问题。当我将标签添加到 app.xaml 时,我可以在跳转列表中看到该任务,但是当我尝试将项目添加到最近的文件列表时,我添加的新项目永远不会显示。如果我创建一个名为“Recent”的 CustomCategory 并手动添加一个 JumpTask,它就会显示。但是,如果我重新启动应用程序,新添加的 JumpTask 就不再存在,只有测试任务。

澄清

最初,我遇到了 JumpList.AddToRecentCategory 根本不起作用的问题。它永远不会添加到最近的列表中。 Gayot Fow 帮助解决了这个问题。但问题仍然存在,如果我手动添加具有自定义类别的 JumpTask,则所有最近的文件都会被清除,并且如果我打开文件并调用 addToRecent,它不会显示。如果我删除 xaml 中声明的 JumpTask,则会显示最近的文件。

XAML:

<JumpList.JumpList>
<JumpList ShowRecentCategory="True">

<JumpTask Title="Test" Description="Test"
Arguments="/test" CustomCategory="Tasks" />
</JumpList>

</JumpList.JumpList>

添加最近项目的 C# 代码

var jumpList = JumpList.GetJumpList(Application.Current);
if (jumpList == null) return;

//create a jump task
var jt = new JumpTask();

jt.Title = System.IO.Path.GetFileNameWithoutExtension(FileName);
jt.Description = jt.Title;
jt.CustomCategory = jt.Title;
jt.ApplicationPath = FileName;

//JumpList.AddToRecentCategory(jt);

jt.CustomCategory = "Recent";
jumpList.JumpItems.Add(jt);

jumpList.Apply();

无论我从 Visual Studio 2013(更新 2)运行应用程序,还是从调试目录运行 exe,都会发生这种情况。有谁知道为什么这不起作用?

我在某处读到有关 ClickOnce 部署的应用程序无法工作的信息,但我什至无法在部署之前使其工作。

如有任何帮助,我们将不胜感激,谢谢。

更新

Gayot Fow的回答引导我用静态方法解决问题

JumpList.AddToRecentCategory(jt);

没有做任何事情。

我更改了 AddToRecent 代码,如下所示:

var jumpList = JumpList.GetJumpList(Application.Current);
if (jumpList == null) return;


string title = System.IO.Path.GetFileNameWithoutExtension(FileName);
string programLocation = Assembly.GetCallingAssembly().Location;

var jt = new JumpTask
{
ApplicationPath = programLocation,
Arguments = FileName,
Description = FileName,
IconResourcePath = programLocation,
Title = title
};
JumpList.AddToRecentCategory(jt);


jumpList.Apply();

问题

尽管最近文件的问题已解决,但我仍然无法使其与名为“任务”的自定义类别共存

在我的应用程序启动时,我调用此代码:

var jumpList = JumpList.GetJumpList(Application.Current);
if (jumpList != null)
{

string title = "New Document";
string programLocation = Assembly.GetCallingAssembly().Location;

var jt = new JumpTask
{
ApplicationPath = programLocation,
Arguments = "/new",
Description = title,
IconResourcePath = programLocation,
Title = title
};
jumpList.JumpItems.Add(jt);

jumpList.Apply();
}

一旦调用此方法,“最近”类别就会消失,并且任何添加最近项目的调用都不会执行任何操作。不过,我确实看到了我的“新文档”任务:/

我的做法完全错误吗?谢谢

最佳答案

这是跳转列表的工作代码片段...

在 App.xaml 中...

<JumpList.JumpList>
<JumpList
ShowFrequentCategory="False"
ShowRecentCategory="False"
JumpItemsRejected="OnJumpItemsRejected"
JumpItemsRemovedByUser="OnJumpItemsRemoved">
</JumpList>
</JumpList.JumpList>

在App.xaml.cs中

    private void OnJumpItemsRejected(object sender, JumpItemsRejectedEventArgs e){}
private void OnJumpItemsRemoved(object sender, JumpItemsRemovedEventArgs e){}

在代码中...

    public object PopulateJumpList(string directoryName)
{
try
{
string programLocation = Assembly.GetCallingAssembly().Location;
var di = new DirectoryInfo(directoryName);
var jt = new JumpTask
{
ApplicationPath = programLocation,
Arguments = directoryName,
Description = "Run at " + directoryName,
IconResourcePath = programLocation,
Title = di.Name
};
JumpList.AddToRecentCategory(jt);
return jt;
}
catch (Exception ex)
{
return ex;
}
}

此方法创建以下形式的跳转任务...

full executable path of the program |=> name of the directory where it was invoked

...这通过静态方法 AddToRecentCategory 添加到最近的类别中。它与将任务添加到跳转列表的本地副本的代码形成对比。必须为应用程序路径提供可执行文件的完全限定名称。另外,正如评论中提到的,当它进入自己的安装目录时,它似乎工作得最好,并且每次覆盖可执行文件时跳转列表都会被删除。在 Debug模式下使用它(针对 vshost.exe)将无法可靠地工作。

关于c# - 每次我的 WPF 应用程序启动时,JumpList 都会重置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24500475/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com