|
-
Mar 1st, 2004, 05:42 AM
#1
Thread Starter
Addicted Member
JInternalFrame bare bones *SOLVED*
Hello
I need a component that has resizable characteristics, but no title bar area etc..
Now i could use a JPanel and write all the border/mouse/resizing stuff myself, but ti thought i'd just hi-jack the JInternalPane and take the bits i don't need out, those bits being the title bar area....
My main stumbling block being i don't know how to do that! Anyone know how to do it?
Andy
Last edited by Andy_Hollywood; Mar 22nd, 2004 at 07:10 AM.
-
Mar 2nd, 2004, 12:35 AM
#2
Dazed Member
Why not just use a JWindow since it lacks the adornments that a JFrame has.
-
Mar 2nd, 2004, 04:14 AM
#3
Thread Starter
Addicted Member
sorry, i neglected to mention that i need it in a JLayeredPane,
i've managed to do it now:
InternalFrameUI ui = this.getUI();
((BasicInternalFrameUI)ui).setNorthPane(null);
marvellous
cheers for you help
Andy
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|