TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
oc A
NA
30
0
Jumplist in SilverLight
Mar 10 2011 1:09 AM
Hi,
I am doing a SilverLight application. In that app , i want to create a jump list.
I am able to create the jumplist but when i click on that its showing Invalid Parameter.
What can be the issue. I am new to using NESL features.
The code is as below.
private void CreateJumplist()
{
//create first item
JumpListItem Task1 = TaskbarButton.Current.Jumplist.CreateJumpListItem(1);
Task1.Title = "Task 1";
Task1.Description = "This is task 1";
Task1.CommandLineArguments = "Hello World";
Task1.Category = "My Tasks";
//create second item
JumpListItem Task2 = TaskbarButton.Current.Jumplist.CreateJumpListItem(2);
Task2.Title = "Task 2";
Task2.Description = "This is task 2";
Task2.CommandLineArguments = "This is NESL";
Task2.Category = "My Tasks";
//show minimized + inactive
Task2.ShowCmd = ShowWindowState.SW_SHOWMINNOACTIVE;
//create – order in collection determines order of display
TaskbarButton.Current.Jumplist.SetJumpListItems( new JumpListItem[] { Task1, Task2 });
return;
}
Any help appreciated. Thanks
Reply
Answers (
1
)
Panoroma Application for Silverlight(WEB)
Examples of real time scenario of using threading....