Thread
:
Working with Labels on Panels.
View Single Post
#
3
(
permalink
)
01-04-2008, 06:09 AM
rpwtdj
Member
Join Date: Dec 2007
Posts: 15
1. You need to add a layout manager to your panel first.
Code:
setLayout(new BorderLayout());
and then
Code:
add(yourLabel,BorderLayout.WEST);
I think this can apply.
2. You can use 'javax.swing.JSplitPane' to implement your app.
rpwtdj
View Public Profile
Send a private message to rpwtdj
Find all posts by rpwtdj