Differences between revisions 1 and 2
Revision 1 as of 2007-09-11 05:45:09
Size: 234
Editor: GregMoore
Comment:
Revision 2 as of 2007-09-12 02:42:43
Size: 426
Editor: 211
Comment:
Deletions are marked like this. Additions are marked like this.
Line 9: Line 9:

=== Hello, World! ===

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

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:

  • Something simple
  • Something else simple

ADB SwingExamples (last edited 2011-08-07 01:33:32 by h86)