11-15-2021 10:54 PM
Hi all,
A listbox select item and paint background color,Enum at"Popup_Window".When selected it background color need selected other item that can painted previous one selected and deselected paint background color is right.Why select paint delay it? thanks!
Solved! Go to Solution.
11-16-2021 12:44 AM
Hi Sam
There is no delay. What you are seeing is the current selected row is highlighted a different colour - the property is "Selection Color", and when you select a different row, then the previous row reverts to its actual colour (the one you specified).
To achieve the effect you want, you could change the event from "Mouse Down" (Notify) to "Mouse Down?" (Filter) and wire a Boolean True constant to the Discard? terminal on the right. Then the row will never be selected (and hence never highlighted with "Selection Color").
11-16-2021 06:33 AM
Thank you very much for your help.