无法摆脱 JumpTask 项目
Cant get rid off JumpTask item
我只是在玩 WPA 应用程序中的 JumpList。我已将此代码添加到我的 App.xaml
:
<JumpList.JumpList>
<JumpList ShowRecentCategory="False" ShowFrequentCategory="False">
<JumpTask Title="New Note" Description="Create new note"
Arguments="/new" CustomCategory="Actions"/>
</JumpList>
</JumpList.JumpList>
然后我决定不在我的应用程序中包含该功能,所以我删除了这些代码行,但是当我右键单击任务栏图标时该项目仍然在 JumpList 上。
我找到了指向从 %APPDATA%\Microsoft\Windows\Recent\AutomaticDestinations\
中删除文件的解决方案,但没有帮助。
清理或重建项目没有帮助。
如评论中所述,您需要在申请中留空 <JumpList>
并 运行 一次。然后,如果需要,您应该能够从标记中完全删除 <JumpList>
。
如果 <JumpList>
元素不存在,更新跳转列表的代码将永远不会执行,并且 Windows 继续使用之前的跳转列表。
我只是在玩 WPA 应用程序中的 JumpList。我已将此代码添加到我的 App.xaml
:
<JumpList.JumpList>
<JumpList ShowRecentCategory="False" ShowFrequentCategory="False">
<JumpTask Title="New Note" Description="Create new note"
Arguments="/new" CustomCategory="Actions"/>
</JumpList>
</JumpList.JumpList>
然后我决定不在我的应用程序中包含该功能,所以我删除了这些代码行,但是当我右键单击任务栏图标时该项目仍然在 JumpList 上。
我找到了指向从 %APPDATA%\Microsoft\Windows\Recent\AutomaticDestinations\
中删除文件的解决方案,但没有帮助。
清理或重建项目没有帮助。
如评论中所述,您需要在申请中留空 <JumpList>
并 运行 一次。然后,如果需要,您应该能够从标记中完全删除 <JumpList>
。
如果 <JumpList>
元素不存在,更新跳转列表的代码将永远不会执行,并且 Windows 继续使用之前的跳转列表。