add monodiag, add workflow overview

This commit is contained in:
Jonathan Jenne
2019-06-26 15:05:09 +02:00
parent 15aa68c3ef
commit bfa6dd3b79
37 changed files with 1680 additions and 36 deletions

View File

@@ -40,9 +40,8 @@ Public Class PanelManager
Private Sub View_DocumentDeactivated(sender As Object, e As DocumentEventArgs)
Dim oDocument As BaseDocument = e.Document
' TODO: oDocument.Control can be nothing
Dim oHashcode As Integer = oDocument.Control.GetHashCode
' TODO: oDocument.Control can be nothing
If oDocument Is Nothing Then
Exit Sub
End If
@@ -51,7 +50,7 @@ Public Class PanelManager
For Each oPanel As DockPanel In _dockManager.Panels
Dim oTag As Integer = oPanel.Tag
If oTag = oHashcode Then
If oTag = oDocument.Control.GetHashCode Then
oPanel.Hide()
End If
Next