- 分享
- 0
- 人气
- 0
- 主题
- 10
- 帖子
- 551
- UID
- 36793
- 积分
- 862
- 阅读权限
- 17
- 注册时间
- 2006-6-8
- 最后登录
- 2015-5-7
- 在线时间
- 2568 小时
|
我是用JPanel来做的。 看你要不要用 JLayeredPane 来 enable 一些你想要Overlap 的 JComponents。
还有就是记得
JPanel testPnl = new JPanel();
JLabel nameLbl = new JLabel(" Test");
textPnl.add(nameLbl);
应该是这个样子吧。。。有点忘记了。。。因为都在用GUI builder了。。。。没用manual。
Java 很多东西都要 new的。 目前我是知道这个。 太多的frame有个弱点。。。我忘记了。。。
建议create new class for JFrame. 比如 :
public class StudentInfo extends Jframe {}
比较 Object Oriented, 出问题也比较容易改。
目前在做assignment. Requirements 是:
1.
Loading the game datainformation from a text file
2.
Displaying a main menu fornavigation.
3.
Displaying summarised details (name,category, price) of all games.
4.
Displaying full details of a particulargame.
5.
Selecting games the user wantsto purchase and storing it in memory.
6.
Writing out a file indicatingthe game name, category, and price of the each game
purchased. The last line of the file willcontain the total cost of all games bought.
[ 本帖最后由 duo8668 于 2009-5-3 09:32 PM 编辑 ] |
|