第十一周课程总结
Posted yuanqizhizhi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第十一周课程总结相关的知识,希望对你有一定的参考价值。
课程知识点总结:
界面设计:
代码:
package test;
import java.awt.BorderLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
public class Shiyi {
public static void main(String[]args) {
JFrame frame=new JFrame("SHIYI");
frame.setLayout(new BorderLayout(4,4));
frame.add(new JButton("A(1)"),BorderLayout.EAST);
frame.add(new JButton("B(2)"),BorderLayout.WEST);
frame.add(new JButton("C(3)"),BorderLayout.SOUTH);
frame.add(new JButton("D(4)"),BorderLayout.NORTH);
frame.add(new JButton("E(5)"),BorderLayout.CENTER);
frame.pack();
frame.setVisible(true);
}
}
截图:
AWT包中提供的所有工具类,主要分为以下三种:组件:Component,容器:Container,布局管理器:LayoutManager
基本容器:JFrame
- JFrame类
- Dimension类
- Point类
标签组件:JLabel
- JLabel类
Font类
imagelcon类
按钮组件:JButton
- JButton类
布局管理器
- FlowLayout
- BorderjLayout
- GridLayout
- CardLayout
- 绝对定位
图片来自别的同学的,只是做了一个汇总
以上是关于第十一周课程总结的主要内容,如果未能解决你的问题,请参考以下文章