| Author |
adding a button
|
budsy remo
Ranch Hand
Joined: Sep 20, 2008
Posts: 103
|
|
i've made a very small code and now i want to add a button on top of it but i don't know how . Can somebody help ?
Maybe i am missing an important concept regarding what to add where . So please point me to the right direction
|
 |
Darryl Burke
Bartender
Joined: May 03, 2008
Posts: 4167
|
|
A JFrame has a default BorderLayout, and a BorderLayout has 6 regions, to each of which only one component can be added.
http://download.oracle.com/javase/tutorial/uiswing/layout/border.html
If you want to add the button on top of the DaDrw, first give it an appropriate layout and then add the button to it.
http://download.oracle.com/javase/tutorial/uiswing/layout/index.html
If you want to add the button and the DaDrw to the frame, use the default BorderLayout with appropriate constraints, or set a layout of your choice.
|
luck, db
There are no new questions, but there may be new answers.
|
 |
 |
|
|
subject: adding a button
|
|
|