jump-list

Using Delphi to creating Win7 Jump list [closed]

我怕爱的太早我们不能终老 提交于 2019-12-04 11:46:23
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 2 years ago . I'm trying to create Jump list on windows 7 for my application using Delphi. I found this c++ code, but I'm not sure how to translate it to Delphi, any help? void CreateJumpList() { ICustomDestinationList *pcdl; HRESULT hr = CoCreateInstance (CLSID_DestinationList, NULL, CLSCTX

Windows 7 Jump-List (Windows Forms, C#)

末鹿安然 提交于 2019-12-04 10:28:30
Does anybody know how to customize the Windows Jump-List feature related to my own application in C#? I know it can be done, but I cannot find anything C#/Windows7 related on MSDN yet. The only info related to W7 and C# I can find so far is just compatibility junk which I've already read. Thanks all Baeltazor You can do this with the Windows API Code Pack There is a sample in Samples\Shell\TaskbarDemo\CS which shows you how to customise the Jump List and icon. 来源: https://stackoverflow.com/questions/1659907/windows-7-jump-list-windows-forms-c

System.Windows.Shell Reference missing

假如想象 提交于 2019-12-04 02:56:17
问题 I have a windows form application and i want to make my own custom jumplist. To do this i need to use the namespace System.Windows.Shell but i can't access it, and i can't find a reference for it in the list of references either. I have checked some tutorials but they all use XAML (WPF Application) and some of them just mentions this can be done by coding as well. So my question is, is it possible to access the namespace needed in a windows form app or do i need to use WPF? And if it is

Vim: how to prevent jumps out of current buffer?

左心房为你撑大大i 提交于 2019-12-03 12:38:23
I frequently have several buffers open in my Vim session. This means that my jumplist stores locations from several buffers. However, frequently when I use Ctrl-o to jump to a previous location, I do not want to leave the buffer and want to jump to previous locations "local" to the current buffer. How do I do this? Example: If my jumplist looks like to following: 4 10 1 ~/aaa.m 3 20 1 ~/aaa.m 2 12 2 ~/xxx.m 1 15 1 ~/aaa.m I want to jump to line 15 of file aaa.m the first time I press Ctrl-o. Importantly, the next time I press Ctrl-o, I do not want to jump to file xxx.m. Rather, I want to jump

Problem showing thumbnail toolbar in .net 3.5 form

折月煮酒 提交于 2019-12-02 05:34:56
问题 I am usign WindowsApiCodePack for windows 7 to make a thumbnail toolbar for my form. In the form shown event i am doing this: tbButton1 = new ThumbnailToolbarButton(new Icon("myOverlayIcn.ico"), "Next Event"); tbButton1.Click += new EventHandler<ThumbnailButtonClickedEventArgs>(button1_Click); tbButton2 = new ThumbnailToolbarButton(new Icon("myOverlayIcn.ico"), "Next Event"); tbButton2.Click += new EventHandler<ThumbnailButtonClickedEventArgs>(button2_Click); TaskbarManager.Instance

Problem showing thumbnail toolbar in .net 3.5 form

落花浮王杯 提交于 2019-12-02 01:55:56
I am usign WindowsApiCodePack for windows 7 to make a thumbnail toolbar for my form. In the form shown event i am doing this: tbButton1 = new ThumbnailToolbarButton(new Icon("myOverlayIcn.ico"), "Next Event"); tbButton1.Click += new EventHandler<ThumbnailButtonClickedEventArgs>(button1_Click); tbButton2 = new ThumbnailToolbarButton(new Icon("myOverlayIcn.ico"), "Next Event"); tbButton2.Click += new EventHandler<ThumbnailButtonClickedEventArgs>(button2_Click); TaskbarManager.Instance.ThumbnailToolbars.AddButtons(this.Handle, tbButton1, tbButton2); I am getting the following error of which i

System.Windows.Shell Reference missing

时光总嘲笑我的痴心妄想 提交于 2019-12-01 15:30:18
I have a windows form application and i want to make my own custom jumplist. To do this i need to use the namespace System.Windows.Shell but i can't access it, and i can't find a reference for it in the list of references either. I have checked some tutorials but they all use XAML (WPF Application) and some of them just mentions this can be done by coding as well. So my question is, is it possible to access the namespace needed in a windows form app or do i need to use WPF? And if it is possible then how? And if not, then is there another way to do it in a windows form app? I'm using Visual

How to add Windows 7 Jump Lists to a application

可紊 提交于 2019-11-29 15:59:53
I want to add custom jump list entries to my application in Windows 7. The menus I am referring to are the following. Pin a application to the taskbar. Now right click on the application. Some applications like windows media player etc. have custom options that you can run. How do I go about adding these to my application. The Windows Team Blog has some articles about Jump Lists and other new Windows 7 Shell features: Developing for the Windows 7 Taskbar – Jump into Jump Lists – Part 1 , Part 2 , Part 3 Those are geared towards C++ applications, there are also managed code APIs which package

How to add Windows 7 Jump Lists to a application

久未见 提交于 2019-11-28 09:45:49
问题 I want to add custom jump list entries to my application in Windows 7. The menus I am referring to are the following. Pin a application to the taskbar. Now right click on the application. Some applications like windows media player etc. have custom options that you can run. How do I go about adding these to my application. 回答1: The Windows Team Blog has some articles about Jump Lists and other new Windows 7 Shell features: Developing for the Windows 7 Taskbar – Jump into Jump Lists – Part 1,