Showing containers only in designer

Anyone have any nice way to have containers visible in designer only, and not opaque when in runtime? Thanks…

Use system.util.DESIGNER_FLAG and system.util.PREVIEW_FLAG

if system.util.DESIGNER_FLAG and not system.util.PREVIEW_FLAG: opacity = false else: opacity = true

1 Like

Thank you, got me on the right track there.