Reputation: 4490
After learning python (cpython) and using this page to search for tkinter widgets' options, methods and patterns, I've started to develop in jython due to javax.swing module from java which can help me make platform-independent GUIs.
My question is: is there a page like the one I mentioned above which presents the options and methods of swing objects?
Upvotes: 2
Views: 193
Reputation: 421040
is there a page like the one I mentioned above which presents the options and methods of swing objects?
Yep (at least on a class level).
Have a look at the package summary for javax.swing (part of the API documentation):
Also, here is a page with screen shots of most of the standard components:
Upvotes: 5