-
-
Notifications
You must be signed in to change notification settings - Fork 142
Open
Labels
Description
Problem
Application
once started cannot be disposed; this prevents its use in many larger applications. It is not even possible to add it in subclass because for example CommandRegistry
has no dispose()
and even if we subllass that too then we cannot swap it before constructor assigns the default CommandRegistry
to context menu instance.
Proposed Solution
Make Application
implement IDisposable
.
Additional context
None
andrii-i