TabItemCloseEvent

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

Event base notification is dispatched to all of the subscribers.

Syntax

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

Example

You can subscribe to this event using the following code:

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

An ITabItem instance is provided by JustDecompile to all of the event subscribers. It contains the tab item that will be closed in the application.

In this article