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

@@ -27,7 +27,7 @@ Public Class ProfileMatch
Public Function NewProfileNode(Profile As ProfileData) As TreeNode
Dim oNode As New TreeNode() With {
.Text = $"Profile: {Profile.Name}",
.ImageIndex = 0,
.ImageIndex = ProfileFilter.ImageIndex.Profile,
.Tag = Profile.Name & "-PROFILE"
}
@@ -39,7 +39,7 @@ Public Class ProfileMatch
Dim oNode As New TreeNode() With {
.Text = oText,
.ImageIndex = 1,
.ImageIndex = ProfileFilter.ImageIndex.Clipboard,
.Tag = Profile.Name & "-REGEX",
.BackColor = GetMatchColor(IsMatch)
}
@@ -52,7 +52,7 @@ Public Class ProfileMatch
Dim oNode As New TreeNode() With {
.Text = oText,
.ImageIndex = 4,
.ImageIndex = ProfileFilter.ImageIndex.Process,
.Tag = Process.Guid & "-PROCESS",
.BackColor = GetMatchColor(IsMatch)
}
@@ -66,7 +66,7 @@ Public Class ProfileMatch
Dim oNode As New TreeNode() With {
.Text = oText,
.ImageIndex = 3,
.ImageIndex = ProfileFilter.ImageIndex.Window,
.Tag = Window.Guid & "-WINDOW",
.BackColor = GetMatchColor(IsMatch)
}
@@ -80,7 +80,7 @@ Public Class ProfileMatch
Dim oNode As New TreeNode() With {
.Text = oText,
.ImageIndex = 2,
.ImageIndex = ProfileFilter.ImageIndex.Control,
.Tag = Control.Guid & "-CONTROL",
.BackColor = GetMatchColor(IsMatch)
}