Swing Examples in Jython

Examples related to Swing using Jython will be here.

Hello, World!

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

List of pages in this category: