-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Open
Labels
⬜ PendingStatus • This issue stills needs to be analyzed.Status • This issue stills needs to be analyzed.🔷EnhancementType • Improvements for the software.Type • Improvements for the software.
Description
我认为我们需要这样的功能来快速打开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.Status • This issue stills needs to be analyzed.🔷EnhancementType • Improvements for the software.Type • Improvements for the software.
