Skip to content

[Feature Request] Jump List Taskbar icon context menu #1385

@Caramel-Diode

Description

@Caramel-Diode

Image

我认为我们需要这样的功能来快速打开ScreenToGif的某个功能 如 编辑器
I think we need something like this to quickly turn on one of ScreenToGif's functions such as the editor.
它被称为Jump List
It's called the Jump List.


抱歉我并不擅长使用 C# 下面是我找到的一些资料希望对此有所帮助。
I'm sorry I'm not very good at using C# Here are some examples of how to use it that I found and hope it helps with the implementation of this feature

using Microsoft.WindowsAPICodePack.Taskbar;
using Microsoft.WindowsAPICodePack.Shell;

JumpList jumpList = new JumpList();

JumpTaskCustomCategory category = new JumpTaskCustomCategory("我的任务");

JumpTask task = new JumpTask();
task.Title = "task 1";
task.Description = "task 1";
task.ApplicationPath = System.Reflection.Assembly.GetExecutingAssembly().Location;
task.Arguments = "/task1";
category.AddJumpTask(task);

jumpList.CustomCategories.Add(category);

JumpList.SetJumpList(Application.Current, jumpList);

Metadata

Metadata

Assignees

Labels

⬜ PendingStatus • This issue stills needs to be analyzed.🔷EnhancementType • Improvements for the software.

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions