ジャンプリストのカスタム カテゴリからアイテムを動的に削除する方法 (ジャンプリスト自体を削除せずに)。
ジャンプリストとカスタムカテゴリを作成する方法は次のとおりです。
// Creating jumplist
list = JumpList.CreateJumpListForIndividualWindow(TaskbarManager.Instance.ApplicationId, windowHandle);
// Creating custom category
userActionsCategory = new JumpListCustomCategory("MyOwnCategory");
// Adding items to custom category
JumpListLink jlapp = new JumpListLink(app_name_path, app_final_name);
jlapp.IconReference = new IconReference(app_name_icon_path, 0);
userActionsCategory.AddJumpListItems(jlapp);
// Adding category to Jumplist
list.AddCustomCategories(userActionsCategory);
ここで、このカスタム カテゴリから項目を動的に追加および削除したいと考えています。API コード パックは、カテゴリにアイテムを追加するだけのメカニズムを提供しているようです。カスタム カテゴリからアイテムを削除するにはどうすればよいですか?