| Forums.Sureshkumar.net : A Perfect Place to Share Knowledge Blogs Games Magazines |
|
|
#2 (permalink) |
|
Moderator
Join Date: Apr 2006
Location: India
Posts: 636
Thanks: 57 Thanked 78 Times in 63 Posts Thanks: 57
Thanked 78 Times in 63 Posts
Rep Power: 17
|
Re: How to add the components in panel
Hi Padmanabhan,
Please correct me if im wrong, coz im not that much well versed with AWT. You can add a component to a panel , In the panel you can set where the component should be displayed. like JPanel p = new JPanel(new BorderLayout()); When you add components to a panel, you use the add method. Exactly which arguments you specify to the add method depend on which layout manager the panel uses. When the layout manager is FlowLayout, BoxLayout, GridLayout, or SpringLayout, you shud typically use the one-argument add method, like this componentX.setBounds(10,10,300,400); p.add(componentX); Please let me know your questions and also im wrong Thank You, Mohan.T
__________________
M0h@n |
|
|
|
|
|
#3 (permalink) |
|
Super Moderator
Join Date: Feb 2006
Location: Hyderabad
Posts: 2,355
Thanks: 117 Thanked 241 Times in 198 Posts Thanks: 117
Thanked 241 Times in 198 Posts
Blog Entries: 4
Rep Power: 51
|
Re: How to add the components in panel
Padmanabhanp,
What Mohan said it true. But when I am using setBounds(....) method, I prefer to use "null" layout for better flexibility. Panel p = new Panel(); p.setLayout(null); . . . remaining program will be same as said by Mohan. Thanks, Krishna |
|
|
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| j2ee interview Q & A | jasmine84 | JAVA Technologies | 4 | 23-01-07 02:09 AM |
| Java Contest-13 with answers | keerthi | JAVA Technologies | 8 | 31-12-06 09:44 AM |
| 9 Important Bold Tips to face Panel ( By Unknown ) | AjayKumar.Kataram | HR Questions | 1 | 26-09-06 09:28 PM |
| Important Components of an Offer Letter | AjayKumar.Kataram | Inspire yourself & Others - Leaders Zone | 1 | 22-09-06 09:24 PM |
| quick time overview | abeetha.m | OTHERS | 0 | 09-07-06 12:35 PM |