add DataResultList
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user