Table of Contents

Event InstanceInitialized

Namespace
Terminal.Gui.App
Assembly
Terminal.Gui.dll

Raised when an IApplication instance completes initialization.

public static event EventHandler<EventArgs<IApplication>>? InstanceInitialized

Returns

EventHandler<EventArgs<IApplication>>
Raised when an instance completes initialization.

Remarks

This event is for the modern instance-based model only. It fires after Init(string?) completes successfully.

This event is thread-local, meaning each thread has its own set of subscribers. This enables parallel test execution where each test thread can independently monitor application instances initialized on that thread.