Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
18 views

How to update Jump List for the Start Menu

There is a JumpList when you right click an app in the TaskBar. There is another JumpList in the Start menu when you search. The TaskBar JumpList is always up to date. The StartMenu JumpList is not ...
Tom Huntington's user avatar
0 votes
0 answers
30 views

JumpList icon: how to do it correctly?

I'm using the Windows API Code Pack to create a jump list, which functions perfectly.... except for the icons. I tried to use ICO files, defining the IconReference like this: task.IconReference = new ...
Paulo Santos's user avatar
  • 11.6k
1 vote
0 answers
87 views

JumpList not showing CustomCategory

If I try to specify a CustomCategory when adding JumpTasks to a JumpList, the items won't show up in the list. I am using Winforms. current code: private void JumpListUpdate() { JumpList jml = new ...
CocoaMix86's user avatar
1 vote
1 answer
326 views

When scrolling in a Menu - Picker, releasing the tap mid-scroll causes it to keep jumping to the top

struct PlainTextPicker<T: Hashable>: View { @Binding var selection: T? let defaultString: String? var options: [T] var toLabel: (T) -> String // body Menu { ...
SeongHyeon LIm's user avatar
2 votes
0 answers
123 views

Is it possible through the Windows API to place a window on top of jump list windows?

I'd like to develop kind of an assistant which places message windows on the screen, e.g. to guide a user where to click. I'd therefore want to put such a message window on top (regarding z-order) of ...
Bene's user avatar
  • 21
0 votes
0 answers
120 views

Why is my JumpTask invalid? I've changed lots and it still stays invalid

I'm trying to add an "Incognito window" JumpTask to my web browser, but it's invalid no matter what properties I change. Here's the code for making the JumpTask and adding it to the list - ...
itsoutchy's user avatar
0 votes
1 answer
77 views

Custom Windows UWP JumpList for SecondaryTile

How can I use the UWP JumpList API to customize the jump list for a taskbar icon created using the SecondaryTile API? var jumpList = await Windows.UI.StartScreen.JumpList.LoadCurrentAsync(); jumpList....
Muhammad Rehan Saeed's user avatar
0 votes
0 answers
45 views

Trouble setting Jump List icon in C#

I'm trying to set up a Jump List in my C# application using the Microsoft.WindowsAPICodePack.Taskbar library. I want to associate a custom icon with a JumpListLink, but I'm encountering an issue. ...
user avatar
0 votes
0 answers
65 views

Issues with JumpList in C#

I am working on a C# application and trying to implement jump lists using the JumpList class from the Microsoft.WindowsAPICodePack.Taskbar namespace. However, I am encountering the following errors ...
user avatar
0 votes
1 answer
119 views

Vim change & jump lists override behaviour

I'm new at vim, started to play with macroses, and founded not obvious override behaviour for jump/change lists. The main question - are there any stable ways to jump by changes/moves inside same line ...
Alexander Moiseev's user avatar
0 votes
2 answers
27 views

the anchorjump crops off the top of the page

I'm having a problem with my website, at the top of my page i made a list/menu with links, when you press the link the page jumps down to the topic you want, but the problem is when you press the link ...
Jules's user avatar
  • 1
-1 votes
1 answer
125 views

WPF JumpList Icon not populating

I have set up a JumpList in my WPF Application. The JumpList is fully functional apart from the Icons are not displaying, this is what I am seeing in my Taskbar: Here is the code I have to create the ...
Richard Gale's user avatar
  • 1,942
1 vote
2 answers
3k views

Flutter: Jump to specific item by item data in ListView.builder

It's possible to jump to specific item by item data in ListView? class Test extends StatelessWidget { Test({Key? key}) : super(key: key); final _list = <String>[ "INFWARS_CH01_EP01&...
R Rifa Fauzi Komara's user avatar
0 votes
0 answers
388 views

Jumplist in .NET 6 Visual Studio 2022 how to create an item

I am trying to add a menuitem to the jumplist (i.e. Create New). I am in App.xaml and I add the following markup: <Application.Resources> </Application.Resources> <JumpList....
EasyBB's user avatar
  • 6,534
0 votes
1 answer
94 views

Geometry to JumpTask.IconResourcePath

im wondering, is there a way that you can bind JumpTask.IconResourcePath with a Geometry. Without needing to create an ico or dll file to read it from. Thank you. My code: <Application x:Class=&...
AZ Software's user avatar
0 votes
0 answers
510 views

Page Up and Page Down as entries in jumplist in (Neo)Vim

Sometimes I move vertically using {} [] operations in (Neo)Vim, and such operations go fine with jumplist so I can navigate the history of cursor movements using control-i control-o. However, Page Up ...
Marco Netto's user avatar
1 vote
1 answer
447 views

Jumplists in VB.NET Windows Form Application

Is there a way to create Windows Taskbar jumplists in a VB.NET Windows Form Application? I'd like to add my last opened files to the list. I've done a bunch of searching and can find this: https://...
Dan's user avatar
  • 149
0 votes
0 answers
194 views

How to get the previously added items in the jumplist

I am now studying the jump list feature and trying to implement it in my WPF/C# project. I observed the following issues when executing the example from the MSDN link: https://learn.microsoft.com/en-...
Bo Liu's user avatar
  • 35
1 vote
1 answer
392 views

confusion with the jumplist of vim

everyone, i have some confusion with the moving of and in jumplist of vim. i think it's not so suitable for code understanding. suppose that we have some code like: package main import "fmt&...
WinChua's user avatar
  • 21
0 votes
2 answers
338 views

Get Windows 10 Jump List pin button icons

Windows 10 has new pin icons in the Jump List. Black and white for different themes. Old Windows 7 pin icons stayed inside imageres.dll, ID 5100, 5101. Where are new icons stored? How get they with ...
Asaq's user avatar
  • 541
1 vote
1 answer
505 views

How to customise Windows Taskbar's Immersive Context Menu (Jump List) for Java application

How to customise Windows Taskbar's Immersive Context Menu (Jump List) for Java application? (Add custom items to it) I have JavaFX program (executable exe file), when I run it, it has an icon in ...
KeyKi's user avatar
  • 3,193
0 votes
1 answer
126 views

Is there a way to use ProcessStartInfo that will create a shortcut in the Windows recent items jump list?

I'm opening a PDF file from a directory under the %username%\My Documents folder location using ProcessStart and ProcessInfoStart. If I open the file programmatically, the pdf does not show under the ...
Jake_TheCoder's user avatar
1 vote
2 answers
1k views

Set icon for Task in Jump List (Windows)

I am trying to set up a icon in the Tasks section of the Jump List for my Electron app. I already successfully set up a icon in the task bar. But I also want to set up my icon in the Tasks section of ...
just4you's user avatar
2 votes
0 answers
189 views

How to add "Last used documents" to a WPF programms tray symbol (not icon) programatically?

I want to provide a list of "last used documents" to the bigger tray icon (not notification icons) of my application. As shortcut to the user, similar to like Keypass or Microsoft Word do it when ...
Patrick Artner's user avatar
-1 votes
1 answer
414 views

How to create Start Menu shortcut task list?

As I mentioned in the title, I want to create C++ console application with jump list. I searched too much websites including this website. For example, I looked especially these websites: Chapter ...
DrakeMcCain's user avatar
0 votes
1 answer
518 views

Quick Access and Namespace Extensions: Unpin object

When I right click on an lnk file - link on a virtual folder in a namespace extension -, then the functions CreateViewObject and/or GetUiObjectOf of my IShellFolder/IShellFolder2 implementations are ...
gouigoui's user avatar
0 votes
1 answer
89 views

Font size change making li elements jump

I have been trying to fix an issue I am experiencing with my sites navigation bar. I want to animate the text to increase in size when hovered over, but want it to be a smooth transition and not just ...
BaracudaBill's user avatar
0 votes
0 answers
582 views

How to add WPF Jumplist to Jump Path?

How to add WPF window Jumplist jumpPath? My code: JumpList jumpList = new JumpList(); jumpList.ShowRecentCategory = true; jumpList.ShowFrequentCategory = true; JumpList.SetJumpList(Application....
Gabee's user avatar
  • 1
0 votes
1 answer
537 views

Cant get rid off JumpTask item

I was just playing around with a JumpList in WPA app. I have added this code to my App.xaml: <JumpList.JumpList> <JumpList ShowRecentCategory="False" ShowFrequentCategory="False"> ...
J.Doe's user avatar
  • 356
0 votes
1 answer
378 views

System "Pin to this list" and "Remove from this list" jump list context menu actions don't do anything for items in custom jump list grouping

I've created a custom jump list grouping of items for my UWP: _jumpList = await JumpList.LoadCurrentAsync(); var mru = Windows.Storage.AccessCache.StorageApplicationPermissions.MostRecentlyUsedList; ...
Barrrdi's user avatar
  • 1,141
1 vote
1 answer
340 views

Handling a Jump List event when a file is picked from the "Recent" list of files for a UWP Windows 10 app

I'm working on a UWP Windows 10 app in C#/Xaml, and I'm planning to extend use of its jump list. So, I know how to handle custom Jump List tasks (such as new file, open file etc.), but for the files ...
Barrrdi's user avatar
  • 1,141
-6 votes
1 answer
365 views

Show Window specific JumpList in Windows

My program opens multiple windows on taskbar (not MDI). I want to display a Jumplist that is specific for each Window. How is it done?
tunafish24's user avatar
  • 2,459
2 votes
1 answer
671 views

How to add a jumplist to a UWP Windows 10 app – written in JavaScript

I write Windows 10 Apps in JavaScript and know, there are some limitations. If I look at the documentation for jumplists, Microsoft just writes »For information about creating or accessing this object,...
kaiserkiwi's user avatar
2 votes
1 answer
132 views

Visual Studio 2015 Jump List Icons Missing

I am not sure how this happened, but I can't find a fix from searching the interwebs. All of a sudden my Jump Lists for VS2015 (other programs work fine) show the generic icon. Has anybody ran across ...
Mr. Young's user avatar
  • 2,414
1 vote
0 answers
280 views

Can we add a common Jump list Task to all running applications on WIndows 7+

Before Windows 7 came, right clicking on any application on taskbar use to popup a menu like shown in picture below. All the menu items that you see below 'maximize' and above 'close' are the ...
Arif Ali Saiyed's user avatar
0 votes
1 answer
531 views

My desktop application cannot catch the jumplist click event

I have a desktop application. I added jumplist menu. This menu appears in the Jumplist when I right click on icon on taskbar. The issue is when I click on the menu item it does not perform any action (...
arshad's user avatar
  • 1
0 votes
0 answers
93 views

JumpList "close" button or "close" right click option

I have a jump list (Delphi XE7) and I have all my open forms there so the user can open the one he wants. I wonder if it's possible (and how to) add a right click option ("close" in this case) or a ...
Ricardo Alvares Pereira Junior's user avatar
0 votes
1 answer
103 views

LongListSelector Jump-List in C# (Windows Universal Platform Apps - Windows 10 Development)

When I was coding for Windows Phone Silverlight 8.1 I used a LongListSelector to create a jump-list menu that looked a little like this: Jump-list in Windows Phone 8.1 However, I have since started ...
Jason Brown's user avatar
6 votes
1 answer
998 views

Changing the application title of an MFC app on the windows 7/8 jump list

Which setting in an MFC app controls the title shown in the windows 7/8 jump-list, just below the actual list of jumps, above the pin application option? This is mainly so that a localised string can ...
ben657's user avatar
  • 3,853
4 votes
1 answer
998 views

JumpList.GetJumpList does not contain recent items

So, my WPF application has a jump list defined in App.xaml <JumpList.JumpList> <JumpList ShowRecentCategory="True"/> </JumpList.JumpList> This list is empty, unless windows ...
Patrick Stalph's user avatar
3 votes
3 answers
2k views

WPF JumpList is not working in Windows 10

I am trying to run custom commands from TaskBar using JumpTask in Windows 10 but it does not start the linked application. However it correctly displays the JumpTask link and it's icons. Here is the ...
grimcoder's user avatar
0 votes
1 answer
57 views

JumpList crash on ScrollTo

I'm asking a question because my application crash when I try to use my jumplist. The list is filled correctly but when i try to make a jump i had e.ExceptionObject {System.ArgumentException: The ...
Alann's user avatar
  • 1
0 votes
0 answers
382 views

C# - Get jumplist tasks from assembly

Is it possible to read all jumplist tasks/entries from an assembly using C#? I have worked with the WindowsAPICodePack before, but I did not find the appropriate methods/classes. I have read some ...
unknown6656's user avatar
  • 2,955
2 votes
0 answers
1k views

Add items to a pinned shortcuts jumplist

I'm looking for an extension to this script (or maybe another one... not 100% sure where I got the script I'm using): '* File: PinItem.vbs '* Date: 03/04/2009 '* Version: 1....
WernerCD's user avatar
  • 2,147
3 votes
0 answers
291 views

How to get the recent items from the JumpList?

I'm using the Windows API Code pack to create a list of recent documents that are displayed in the jump list. It's working nice. I use this code to create entries: JumpTask jumpTask = new JumpTask() {...
fedab's user avatar
  • 989
0 votes
0 answers
133 views

Renaming Pinned Application [duplicate]

Context Due to the security policy on the work machine, I can't pin application that is on network drive. However, I've found a workaround to this, which is to pin a safe application, like any from ...
Xiaoy312's user avatar
  • 14.5k
0 votes
0 answers
60 views

Right click "Icon Tasks"

How do i create "icon tasks". I would like to replicate how some programs function (such as stickynotes/spotify) when you right click on their icons. I apologize I cannot include an image for I do not ...
Zanilen's user avatar
  • 37
0 votes
0 answers
114 views

jumplist not showing up on the pinned icon (c++/cli - windows 7)

When i pin my app to the taskbar, I don't see the jumplist when the app is to running. Jumplist: recently opened files that show up when you right click on a taskbar icon in windows 7. When I run ...
Hari's user avatar
  • 73
1 vote
1 answer
4k views

Cannot assign void to an implicitly-typed local variable in WP 8.1

I am developing a music player app in WP 8.1 & I am trying to implement Jump List feature into it. To implement jump list, I am following the sample given here. I am making some necessary changes ...
Sajeev C's user avatar
  • 1,538
2 votes
2 answers
7k views

How to get appUserModelId for any app in windows 7/8 using vc++

I want to find out recent/frequent items from jumplist of any app. I know that we can do this using IApplicationDocumentLists interface. But we need appUserModelId for that. So now my problem is to ...
Shashank's user avatar