- 1、本文档共22页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
面向对象程序设计实验报告java实验报告图形用户界面精选
图形用户界面设计
实验1
Nested Panels
The program Nested Panels.java is from Listing 3.8 of the text. Save the program to your directory and do the following:
Compile and run the program. Experiment with resizing the frame and observe the effect on the components.
运行程序后出现如下界面:
改变窗口的大小,观察到:(见下图)
(1)两个子面板one和two的尺寸都保持不变。
(2)蓝色的主面板随着窗口的变大而扩展。
(3)蓝色面板变长,one和two子面板都不变,当蓝色面板变宽时,两个子面板随着它移动,并保持居中状态。
(4)缩小窗口,根据流式布局的形式,two子面板因为位置容不下,自动被放在下一行的位置。
2. Modify the program by adding a third subpanel that is twice as wide, but the same height, as the other two subpanels. Choose your own label and color for the subpanel (the color should not be red, green, or blue). Add the panel to the primary panel after the other two panels.
修改的代码如下:
JPanel subPanel3 = new JPanel() ;
subPanel3.setPreferredSize (new Dimension(300, 100));
ubPanel3.setBackground (Color.red);
JLabel label3 = new JLabel (Three);
subPanel3.add (label3);
primary.add (subPanel3);
3. Compile and run the modified program. Again, experiment with resizing the frame and observe the effect on the components.
改变窗口的大小,3个子面板变化情况跟第一步实验的类似。
4. Now add a statement to the program to set the preferred size of the primary panel to 320 by 260. (What would be the
purpose of this?). Compile and run the program to see if anything changed.
代码修改:
primary.setPreferredSize (new Dimension(320, 260));
这一步是运行时让主面板的大小固定为宽度320,高度260。
5. Now add another panel with background color blue and size 320 by 20. Add a My Panels label to this panel and
then add this panel to the primary panel before adding the other panels. Compile and run the program. What was the
effect of this panel?
代码如下:
JPanel subPanel4 = new JPanel() ;
subPanel4.setPreferredSize (new Dimension(320, 20));
subPanel4.setBackground (Color.blue);
JLabel label4 = new JLabel (MyPanel);
subPanel4.add (label4);
……………………………
primary.add (subPanel4);
primary.add (subPanel1);
primary.add (subPanel2);
primary.add (subPanel3);
因为蓝色主面板的宽320,由于流式布局,一个一个把面板加到主面板,M
您可能关注的文档
- 非常详细的电脑基础入门培训教案.doc
- 静脉输血技术.ppt
- 纺织厂供配电课程设计.docx
- 非煤矿山安全培训.doc
- 纵断面设计PPT.pptx
- 非煤矿山安全责任制.doc
- 纹理分析__数字图像处理.ppt
- 非常好的利用割补法解立体几何中的问题.pptx
- 纺织品,耐人照光色牢.pptx
- 非物质文化遗产保护下梅山武术的传承与发展_毕业论文.doc
- 专题06 经济体制(我国的社会主义市场经济体制)-五年(2020-2024)高考政治真题分类汇编(解析版).docx
- 专题11 世界多极化与经济全球化-5年(2020-2024)高考1年模拟政治真题分类汇编(解析版).docx
- 专题03 经济发展与社会进步-5年(2020-2024)高考1年模拟政治真题分类汇编(浙江专用)(解析版).docx
- 专题09 文化传承与文化创新-5年(2020-2024)高考1年模拟政治真题分类汇编(北京专用)(原卷版).docx
- 5年(2020-2024)高考政治真题分类汇编专题08 社会进步(我国的个人收入分配与社会保障)(原卷版).docx
- 专题07 探索世界与把握规律-5年(2020-2024)高考1年模拟政治真题分类汇编(解析版).docx
- 5年(2020-2024)高考政治真题分类汇编专题06 经济体制(我国的社会主义市场经济体制)(原卷版).docx
- 专题11 全面依法治国(治国理政的基本方式、法治中国建设、全面推进依法治国的基本要求)-五年(2020-2024)高考政治真题分类汇编(解析版).docx
- 专题17 区域联系与区域协调发展-【好题汇编】十年(2015-2024)高考地理真题分类汇编(解析版).docx
- 专题01 中国特色社会主义-5年(2020-2024)高考1年模拟政治真题分类汇编(原卷版).docx
文档评论(0)