I can make a background of a Listview transparent with CSSUtils in the 64 bit 9.80 B4J version with this code:
Using a xCustomListView gives an error when in both cases the Color As Paint is required.
How do I make the xCustomListView in B4J transparent?
B4J transparent backgrond with CSSUtils:
' --- Standard Listview works with FX
CSSUtils.SetBackgroundColor(ListView1, fx.Colors.Transparent)
' --- Standard Listview works with XUI
Dim clr As Paint = fx.Colors.From32Bit(XUI.Color_Transparent)
CSSUtils.SetBackgroundColor(ListView1, clr)
Using a xCustomListView gives an error when in both cases the Color As Paint is required.
How do I make the xCustomListView in B4J transparent?