public static void Unsubscribe( SubscriptionToken token )
Public Overloads Shared Sub Unsubscribe( _ ByVal token As SubscriptionToken _ )
public static void Unsubscribe( SubscriptionToken token )
Public Overloads Shared Sub Unsubscribe( _ ByVal token As SubscriptionToken _ )
protected override bool Initialize() //Called when the Module is initialized. { ProjectOpenedEvent.Subscribe(OnProjectOpened); //subscribe to Project opened event return base.Initialize(); } private void OnProjectOpened(ProjectEventArgs obj) //Project Opened event handler { MessageBox.Show($"{Project.Current} has opened"); //show your message box } protected override void Uninitialize() //unsubscribe to the project opened event { ProjectOpenedEvent.Unsubscribe(OnProjectOpened); //unsubscribe return; }
Target Platforms: Windows 11, Windows 10, Windows 8.1