- The first alternative is use a JWindow instead of a JFrame which does not have those three buttons.
- The second alternative could be use JInternalFrame instead of a JFrame.
- The third alternative is use the setUndecorated() method to disable the decorations to this frame and later decorate with a dialog style. The only problem is that the close button don't remove so you must disable its function such as can see below
- The last alternative could be disable the close and resizable buttons such as can see bellow.
I believe there are more solutions, but for me are the most easy and utils...
1 comment:
Thanks a lot
Post a Comment