Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

JumpList::JumpItemsRemovedByUser Event

.NET Framework (current version)
 

Occurs when jump items previously in the Jump List are removed from the list by the user.

Namespace:   System.Windows.Shell
Assembly:  PresentationFramework (in PresentationFramework.dll)

public:
event EventHandler<JumpItemsRemovedEventArgs^>^ JumpItemsRemovedByUser {
	void add(EventHandler<JumpItemsRemovedEventArgs^>^ value);
	void remove(EventHandler<JumpItemsRemovedEventArgs^>^ value);
}

After the contents of the JumpList are applied to the Windows shell, the JumpItems property is modified to contain only those items that the Windows shell successfully added to its Jump List. You can access the lists of removed items through event handlers for the JumpItemsRejected and JumpItemsRemovedByUser events.

The following example shows how to handle the JumpItemsRemovedByUser event to display the rejected items in a message box. This example is part of a larger example available in the JumpList class overview.

private void JumpList_JumpItemsRemovedByUser(object sender, System.Windows.Shell.JumpItemsRemovedEventArgs e)
{
    StringBuilder sb = new StringBuilder();
    sb.AppendFormat("{0} Jump Items Removed by the user:\n", e.RemovedItems.Count);
    for (int i = 0; i < e.RemovedItems.Count; ++i)
    {
        sb.AppendFormat("{0}\n", e.RemovedItems[i]);
    }

    MessageBox.Show(sb.ToString());
}

.NET Framework
Available since 4.0
Return to top
Show:
© 2017 Microsoft