SelectedTabItemChangedEvent

This class provides a push notification to all of the clients subscribers, when selected tab item has been changed in JustDecompile.

Event base notification is dispatched to all of the subscribers.

Syntax

C#
public class SelectedTabItemChangedEvent : CompositePresentationEvent<ITabItem>
{
}

Example

You can subscribe to this event using the following code:

C#
public void OnImportsSatisfied()
{
   this.eventAggregator.GetEvent<SelectedTabItemChangedEvent>().Subscribe(OnTabItemChanged);
}

An ITabItem instance is provided by JustDecompile to all of the event subscribers. It contains the currently selected tab item in the application.

In this article