diff --git a/Global_Indexer/frmIndexFileList.Designer.vb b/Global_Indexer/frmIndexFileList.Designer.vb index 1d3af99..60e6725 100644 --- a/Global_Indexer/frmIndexFileList.Designer.vb +++ b/Global_Indexer/frmIndexFileList.Designer.vb @@ -61,8 +61,11 @@ Partial Class frmIndexFileList 'CheckedListBoxControl1 ' resources.ApplyResources(Me.CheckedListBoxControl1, "CheckedListBoxControl1") + Me.CheckedListBoxControl1.AppearanceHighlight.BackColor = System.Drawing.Color.Transparent + Me.CheckedListBoxControl1.AppearanceHighlight.Options.UseBackColor = True Me.CheckedListBoxControl1.HighlightedItemStyle = DevExpress.XtraEditors.HighlightStyle.Standard Me.CheckedListBoxControl1.HotTrackItems = True + Me.CheckedListBoxControl1.HotTrackSelectMode = DevExpress.XtraEditors.HotTrackSelectMode.SelectItemOnHotTrackEx Me.CheckedListBoxControl1.ItemHeight = 30 Me.CheckedListBoxControl1.ItemPadding = New System.Windows.Forms.Padding(10) Me.CheckedListBoxControl1.Name = "CheckedListBoxControl1" diff --git a/Global_Indexer/frmIndexFileList.resx b/Global_Indexer/frmIndexFileList.resx index 1eab9eb..2f169d3 100644 --- a/Global_Indexer/frmIndexFileList.resx +++ b/Global_Indexer/frmIndexFileList.resx @@ -117,15 +117,63 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Label2 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Panel1 + + + 0 + + + Label1 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Panel1 + + + 1 + + + + Top + + + + 0, 0 + + + 647, 57 + + + 0 + + + Panel1 + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 4 + True - Segoe UI, 9.75pt, style=Bold - NoControl @@ -184,30 +232,6 @@ Sie haben nun Möglichkeit die Indexierung für ausgewählte Dateien zu verhinde 1 - - Top - - - 0, 0 - - - 647, 57 - - - 0 - - - Panel1 - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 4 - Top, Bottom, Left, Right diff --git a/Global_Indexer/frmIndexFileList.vb b/Global_Indexer/frmIndexFileList.vb index cb87197..3700535 100644 --- a/Global_Indexer/frmIndexFileList.vb +++ b/Global_Indexer/frmIndexFileList.vb @@ -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