Swing Examples in Jython

Examples related to Swing using Jython will be here.

Hello, World!

These are some ways of creating a simple frame with the title 'Hello, World!' on it.

{{{from javax.swing import JFrame JFrame('Hello, World!', defaultCloseOperation=JFrame.EXIT_ON_CLOSE, size=(300, 300), locationRelativeTo=None).show()}}}

{{{from javax.swing import JFrame f = JFrame('Hello, World!', defaultCloseOperation=JFrame.EXIT_ON_CLOSE, size=(300, 300), locationRelativeTo=None) f.show()}}}

List of pages in this category: