Наследование: System.Windows.Forms.NativeWindow, System.Windows.Forms.IMessageFilter, IOleCommandTarget, IDisposable
 internal static void UnregisterEditor(VSCodeEditorWindow editor)
 {
   Broker.dic.Remove( editor.Parent.SqlEditor.Pane.DocumentPath );
 }
 public void Init(ServiceProvider serviceProvider, SqlEditor Editor)
 {
   SqlEditor = Editor;
   ServiceBroker sb = new ServiceBroker(serviceProvider);
   nativeWindow = new VSCodeEditorWindow(sb, this);
 }
 internal static void RegisterEditor( VSCodeEditorWindow editor )
 {
   Broker.dic.Add(editor.Parent.SqlEditor.Pane.DocumentPath, editor);
 }