Differences between revisions 3 and 4
Revision 3 as of 2007-09-12 02:43:00
Size: 441
Editor: 211
Comment:
Revision 4 as of 2007-09-12 02:47:22
Size: 238
Editor: 211
Comment:
Deletions are marked like this. Additions are marked like this.
Line 4: Line 4:
Line 10: Line 11:
=== Hello, World! ===

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

Swing Examples in Jython

Examples related to Swing using Jython will be here.

List of pages in this category:

  • Something simple
  • Something else simple

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