| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 462 人关注过本帖
标题:求大家帮助修改下
取消只看楼主 加入收藏
a125598
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2012-12-26
收藏
 问题点数:0 回复次数:0 
求大家帮助修改下
修改例W14E6,使得当鼠标在窗口中点击任何位置时,都会将按钮放在以点击位置为中心的位置,并在文本域中显示中心位置的坐标。
import java.awt.*;
import java.awt.event.*;
import javax.swing.SwingUtilities;

public class W14E6{

    public static void main(String[] args) {
        MyWindow myWin = new MyWindow("鼠标运动事件测试");
        
    }   
   
}

class MyWindow extends Frame implements MouseMotionListener{
    Button b;
    TextArea ta;
   
    MyWindow(String s){
        super(s);
        setLayout(new FlowLayout());
        setBounds(200, 100, 600, 300);
        b = new Button("按钮");
        add(b);
        ta = new TextArea();
        add(ta);
        b.addMouseMotionListener(this);
        ta.addMouseMotionListener(this);
        addWindowListener(new WindowAdapter(){
            public void windowClosing(WindowEvent e){
                System.exit(0);
            }
        });
        setVisible(true);
    }
   
    public void mouseDragged(MouseEvent e){
        int x,y,w,h;
        Component c = (Component)e.getSource();
        e = SwingUtilities.convertMouseEvent(c,e,this);
        x = e.getX();
        y = e.getY();
        w=c.getSize().width;
        h=c.getSize().height;
        c.setLocation(x-w/2,y-h/2);   
    }
   
    public void mouseMoved(MouseEvent e){}
        
}
搜索更多相关主题的帖子: 鼠标 public import 中心 
2012-12-26 19:33
快速回复:求大家帮助修改下
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.030035 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved