drawrectangles.java

来自「java课件」· Java 代码 · 共 47 行

JAVA
47
字号
import java.awt.Graphics;import java.awt.Color;import javax.swing.JPanel;import javax.swing.JFrame;public class DrawRectangles extends JFrame {  public DrawRectangles() {    setTitle("DrawRectangles");    getContentPane().add(new RectPanel());  }  /** Main method */  public static void main(String[] args) {    DrawRectangles frame = new DrawRectangles();    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);    frame.setSize(300, 250);    frame.setVisible(true);  }}class RectPanel extends JPanel {  protected void paintComponent(Graphics g) {    super.paintComponent(g);    // Set new color    g.setColor(Color.red);    // Draw a rectangle    g.drawRect(5, 5, getWidth() / 2 - 10, getHeight() / 2 - 10);    // Draw a rounded rectangle    g.drawRoundRect(getWidth() / 2 + 5, 5,      getWidth() / 2 - 10, getHeight() / 2 - 10, 60, 30);    // Change the color to cyan    g.setColor(Color.cyan);    // Draw a 3D rectangle    g.fill3DRect(5, getHeight() / 2 + 5, getWidth() / 2 - 10,      getHeight() / 2 - 10, true);    // Draw a raised 3D rectangle    g.fill3DRect(getWidth() / 2 + 5, getHeight() / 2 + 5,      getWidth() / 2 - 10, getHeight() / 2 - 10, false);  }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?