add raw data view

This commit is contained in:
Jonathan Jenne
2019-07-05 16:11:09 +02:00
parent 0ab3acddb4
commit e8dfe68eef
10 changed files with 252 additions and 14 deletions

View File

@@ -24,4 +24,14 @@
gvOverview.Columns.Item("Process").VisibleIndex = 1
gvOverview.Columns.Item("State").Visible = False
End Sub
Private Sub ShowRawDataToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles ShowRawDataToolStripMenuItem.Click
Dim oItem As WorkflowItem = gvOverview.GetFocusedRow()
If oItem IsNot Nothing Then
Dim oForm As New frmWorkflowRawData(oItem.Raw)
oForm.ShowDialog()
End If
End Sub
End Class