Jump to content

_guictrllistview_setbkcolor to one item


Recommended Posts

I am sure there is a better way...this is all I got after modifying one of the examples...

#AutoIt3Wrapper_au3check_parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include <GuiConstantsEx.au3>
#include <GuiListView.au3>
#include <Constants.au3>

Opt('MustDeclareVars', 1)

$Debug_LV = False; Check ClassName being passed to ListView functions, set to True and use a handle to another control to see it work

_Main()

Func _Main()
    Local $hListView
    
    GUICreate("ListView Set BkColor", 400, 300)
    $hListView = GUICtrlCreateListView("", 2, 2, 394, 268)
    GUISetState()

; Set colors
;_GUICtrlListView_SetBkColor($hListView, $CLR_MONEYGREEN)
;_GUICtrlListView_SetTextColor($hListView, $CLR_BLACK)
;_GUICtrlListView_SetTextBkColor($hListView, $CLR_MONEYGREEN)

; Add columns
    _GUICtrlListView_AddColumn($hListView, "Items", 100)

; Add items
    _GUICtrlListView_BeginUpdate($hListView)
    For $iI = 1 To 5
        _GUICtrlListView_AddItem($hListView, "Item " & $iI)
    Next
    
    GUICtrlCreateListViewItem("Diffff",$hListView)
    GUICtrlSetColor(-1,$CLR_MONEYGREEN)
    
    _GUICtrlListView_EndUpdate($hListView)

; Show clors
    

; Loop until user exits
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc  ;==>_Main
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...