第一范文网 - 专业文章范例文档资料分享平台

面向对象程序设计实验报告java实验报告图形用户界面

来源:用户分享 时间:2025/5/16 0:00:35 本文由loading 分享 下载这篇文档手机版
说明:文章内容仅供预览,部分内容可能不全,需要完整文档或者需要复制内容,请下载word后使用。下载word有问题请添加微信号:xxxxxxx或QQ:xxxxxx 处理(尽可能给您提供完整文档),感谢您的支持与谅解。

图形用户界面设计

实验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:

1. 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 (\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个子面板变化情况跟第一步实验的类似。

面向对象程序设计实验报告java实验报告图形用户界面.doc 将本文的Word文档下载到电脑,方便复制、编辑、收藏和打印
本文链接:https://www.diyifanwen.net/c9bq0f6z1vw9o8y29wt5t6vudb8bhn000zco_1.html(转载请注明文章来源)
热门推荐
Copyright © 2012-2023 第一范文网 版权所有 免责声明 | 联系我们
声明 :本网站尊重并保护知识产权,根据《信息网络传播权保护条例》,如果我们转载的作品侵犯了您的权利,请在一个月内通知我们,我们会及时删除。
客服QQ:xxxxxx 邮箱:xxxxxx@qq.com
渝ICP备2023013149号
Top