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