Differences between revisions 2 and 3
Revision 2 as of 2007-09-12 02:42:43
Size: 426
Editor: 211
Comment:
Revision 3 as of 2007-09-12 02:43:00
Size: 441
Editor: 211
Comment:
Deletions are marked like this. Additions are marked like this.
Line 12: Line 12:
<pre>
Line 15: Line 16:
</pre>

Swing Examples in Jython

Examples related to Swing using Jython will be here.

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>

List of pages in this category:

  • Something simple
  • Something else simple

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