Small Popup Window Creation

You can also make the popup window’s background transparent and set title and border display to never if you want to use a rectangle with rounded corners as the background to get a popup that looks something like this:
image
To get the transparent background, put this code in the popup window’s internalFrameActivated event:

# Make background transparent.
window = event.source
window.setOpaque(0)

2 Likes