资源简介
用标签(Label)实现对鼠标坐标位置的显示
代码片段和文件信息
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class TestMouse extends Jframe implements MouseMotionListener{
static Label lab= new Label();
static JPanel p=new JPanel();
public TestMouse()
{
super(“鼠标事件演示“);
}
public static void main(String[] args) {
TestMouse tm = new TestMouse();
tm.setSize(300400);
tm.setLocationRelativeTo(null); //不能设置开始位置
tm.getContentPane().add(pBorderLayout.CENTER);
p.add(lab);
p.addMouseMotionListener(tm); //对面板进行监听,监听者是实现MouseMotionListener的对象
tm.setVisible(true);
tm.setDefaultCloseOperation(JFram
- 上一篇:jd-gui.exe
- 下一篇:图片拼接成一张图片
评论
共有 条评论