Questions tagged [jump-list]

A jump list represents a list of items and tasks displayed as a menu on a taskbar button in Windows 7 or later.

A jump list in Windows 7 or later displays a list of items when right clicking on a taskbar button. The list can display recent items, pinned items, or tasks as defined by the application.

In C# it can be implemented using the JumpList which contains JumpItems, either JumpPath or JumpTasks. The JumpList class is described at MSDN as:

Represents a list of items and tasks displayed as a menu on a Windows 7 taskbar button.

Source: MSDN

111 questions
0
votes
1 answer

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…
0
votes
1 answer

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 called. These functions are called with the…
gouigoui
  • 48
  • 7
0
votes
1 answer

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 jump in size hence the jQuery approach as…
BaracudaBill
  • 75
  • 2
  • 8
0
votes
0 answers

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.Current, jumpList); JumpPath jumpPath = new…
Gabee
  • 1
  • 3
0
votes
1 answer

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:
J.Doe
  • 318
  • 2
  • 13
0
votes
1 answer

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; string mruToken = mru.Add(file.FileInfo,…
Barrrdi
  • 567
  • 7
  • 23
0
votes
1 answer

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 (i.e., my app does catch it). I took code from…
arshad
  • 1
  • 2
0
votes
0 answers

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 small X button to the jump list items, that closes…
0
votes
1 answer

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 to code Windows Universal Platform apps instead…
Jason Brown
  • 79
  • 2
  • 8
0
votes
1 answer

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 provided item doesn't exist in the collection. at…
Alann
  • 1
  • 2
0
votes
0 answers

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 articles which stated that it is impossible to read…
unknown6656
  • 2,199
  • 2
  • 26
  • 40
0
votes
0 answers

Renaming Pinned Application

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 system32, and edit the shortcut(.lnk) file that is…
Xiaoy312
  • 13,354
  • 1
  • 26
  • 37
0
votes
0 answers

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 have enough reputation; however, (I am using…
Zanilen
  • 37
  • 9
0
votes
0 answers

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 the app, a new taskbar icon opens, instead of the…
Hari
  • 59
  • 1
  • 6
0
votes
1 answer

Vim's jumplist has always only one entry

I'm learning to use the jumps (CTRL-O, CTRL-I). But vim's jumplist allways has only one entry no matter how many jumps I make. Tried with /, ( and ). Anyone knows why ? I'm not loading any .vimrc. Edit: Explaining better how I'm testing this: I…
Nelson Teixeira
  • 5,856
  • 4
  • 31
  • 60