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

@@ -0,0 +1,18 @@
Imports System.ComponentModel
Public Class frmWorkflowOverview
Private WorkflowItems As BindingList(Of WorkflowItem)
Private Sub frmWorkflowOverview_Load(sender As Object, e As EventArgs) Handles MyBase.Load
WorkflowItems = New BindingList(Of WorkflowItem) From {
New WorkflowItem() With {.Title = "Eingangsrechnung XYZ", .State = WorkflowItem.ItemState.Danger, .WorkflowName = "Rechnungseingang"},
New WorkflowItem() With {.Title = "Eingangsrechnung ABC", .State = WorkflowItem.ItemState.Normal, .WorkflowName = "Rechnungseingang"},
New WorkflowItem() With {.Title = "Mietvertrag XYZ läuft aus", .State = WorkflowItem.ItemState.Warning, .WorkflowName = "Vertragsprüfung"}
}
GridWorkflowOverview.DataSource = WorkflowItems
End Sub
End Class