Tagged Questions

5
votes
4answers
454 views

Taking advantage of Windows 7 RC using C#?

I want to take advantage of the new features in Windows 7 using C# (ie. JumpList, Window Shake, etc). Are there any websites/tutorials that can show me what I want to learn.
3
votes
1answer
140 views

Jump Lists and Windows Forms

I've read a few other articles on Stack Overflow about implementing a Windows 7 jump list, but they're all from a couple of years ago and basically suggest, "get the Windows API Code Pack." (Answer ...
3
votes
3answers
97 views

What is the fastest (insert speed) way to achieve a prioritized collection of arrays in .Net?

I am writing a specific priority queue. Its structure needs to be something as follows: Priority(<int>) Data(List<Object>) 1 a, b, g, h 3 c, d, j 4 ...
3
votes
2answers
507 views

System.Windows.Shell Reference missing

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 ...
3
votes
1answer
2k views

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

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 ...
2
votes
1answer
196 views

Why do only files with my file extension show up in the Windows 7 jump list?

I am trying to properly integrate our app with the Windows 7 Jump Lists. We allow opening files within the application and I added this a while ago to add the items to the jump list: var list = ...
1
vote
1answer
265 views

Need help using System.Windows.Shell.JumpList.SetJumpList();

I'm really new to this so this is probably a very simple thing to answer but anyhow... I need to use the method in the title to set a new jumplist for my windows form app, but i don't know what ...
1
vote
2answers
400 views

C#: Clean recently used files from jumplists

Is there a way to clean the some items form the Windows Jump-List using C#? (An applications Jump-List appears when you click right on the applications icon in the Windows 7 Taskbar.) I would like ...
1
vote
2answers
317 views

.Net 4 JumpTask disable “Remove from this list”

I am using jumplists in .NET 4, so far I got it working fine, but I cannot make a JumpTask read only so a user cannot remove the task from the jump list. I want to remove the Pin to List and Remove ...
1
vote
3answers
342 views

Windows 7 Jump List

I think that is what this is called: http://img163.imageshack.us/img163/9234/13016288.png I want to be able to add stuff like that to my program. Such as an open button and other buttons that would ...
1
vote
1answer
303 views

Problem showing thumbnail toolbar in .net 3.5 form

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"), ...
1
vote
2answers
268 views

How to use Windows 7 features in my simple .net application without any new API?

I want to use windows 7 features like icon overlay, and thumbnail tasks but my question is that can i do it without using any other API on just my plain .net 3.5. i recently enabled jumplists on an ...
0
votes
0answers
27 views

Create a Jumplist of Commandline Arguments?

Is it possible to use the Windows 7 JumpList API to create a list of custom data not related to existing files in the FileSystem? For instance, a list of recent\frequent command-line arguments for ...
0
votes
1answer
24 views

WPF4 JumpList Missing when launched from Program Files

I have a very simple application that I'm adding jumplist support to. A few days ago I was happy and I called it version 1. So I copied it to c:\program files\clipboard editor\clipboardeditor.exe ...
0
votes
1answer
129 views

Splash screen is pinned to taskbar, main screen shows additional taskbar entry

In my application, when you pin the installed app to the Taskbar from the Start Menu, and then launch the application from the pinned icon, the splash screen shows as if it is running from the pinned ...