add DataResultList

This commit is contained in:
Developer02 Digital Data
2019-10-14 15:18:45 +02:00
parent c668f692f4
commit a80486dad2
21 changed files with 1120 additions and 223 deletions

View File

@@ -19,6 +19,15 @@ Public Class ProfileFilter
Private _LogConfig As LogConfig
Private _Logger As Logger
Enum ImageIndex
Root
Profile
Clipboard
Process
Window
Control
End Enum
Public ReadOnly Property Profiles As List(Of ProfileData)
Get
Return _Profiles
@@ -51,8 +60,10 @@ Public Class ProfileFilter
Dim oRootNode As TreeNode = New TreeNode() With {
.Text = $"Suche nach '{ClipboardContents}'",
.Tag = "ROOT"
.Tag = "ROOT",
.ImageIndex = ImageIndex.Root
}
_TreeView.Nodes.Clear()
_TreeView.Nodes.Add(oRootNode)
For Each oProfile In Profiles