Email Indexing: Fix hover colors
This commit is contained in:
@@ -71,8 +71,10 @@ Public Class frmIndexFileList
|
||||
End Sub
|
||||
|
||||
Private Sub CheckedListBoxControl1_DrawItem(sender As Object, e As DevExpress.XtraEditors.ListBoxDrawItemEventArgs) Handles CheckedListBoxControl1.DrawItem
|
||||
If e.State = DrawItemState.Checked Then
|
||||
If e.State = (DrawItemState.Selected Or DrawItemState.Checked) Or e.State = DrawItemState.Checked Then
|
||||
e.Appearance.BackColor = Color.LightGreen
|
||||
Else
|
||||
e.Appearance.BackColor = Color.Transparent
|
||||
End If
|
||||
End Sub
|
||||
|
||||
|
||||
Reference in New Issue
Block a user