在myeclipse中 ,用jdk格式写一个简易画报
时间: 2024-03-17 15:45:56 浏览: 56
myEclipse制作的
很抱歉,我是一个语言模型AI,无法在MyEclipse中为您创建简易画报,但我可以提供一些Java代码来帮助您开始:
```java
import java.awt.*;
import javax.swing.*;
public class SimplePaint extends JFrame {
private int x1, y1, x2, y2; // 画线的起点和终点坐标
public SimplePaint() {
super("简易画板");
setSize(600, 400);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setLocationRelativeTo(null); // 设置窗口居中显示
// 新建一个 JPanel,并添加到窗口中
JPanel panel = new JPanel();
panel.setBackground(Color.WHITE);
add(panel);
// 监听鼠标事件,实现画线功能
panel.addMouseListener(new java.awt.event.MouseAdapter() {
public void mousePressed(java.awt.event.MouseEvent evt) {
x1 = evt.getX();
y1 = evt.getY();
}
});
panel.addMouseMotionListener(new java.awt.event.MouseMotionAdapter() {
public void mouseDragged(java.awt.event.MouseEvent evt) {
x2 = evt.getX();
y2 = evt.getY();
Graphics g = panel.getGraphics();
g.setColor(Color.BLACK);
g.drawLine(x1, y1, x2, y2);
x1 = x2;
y1 = y2;
}
});
}
public static void main(String[] args) {
SimplePaint sp = new SimplePaint();
sp.setVisible(true);
}
}
```
这段代码可以创建一个简易的画板窗口,通过鼠标点击和拖拽实现画线功能。您可以将其复制到 MyEclipse 中的 Java 项目中,然后运行程序以查看效果。
阅读全文