in reply to Re^2: wxPerl button background
in thread wxPerl button background

I'm unable to test this directly (at work atm). I did note one thing in my quick search of the documentation: the paragraph on SetBackgroundColour warns that the method itself does not produce a visible change, the screen must be refreshed first.

1 Peter 4:10

Replies are listed 'Best First'.
Re^4: wxPerl button background
by xircon (Initiate) on Dec 17, 2014 at 22:20 UTC
    That is it!
    $panel->Layout();
    Fixes the problem. My quest for knowledge continues.............. Cheers.