| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1670 人关注过本帖
标题:请教鼠标画线的问题
取消只看楼主 加入收藏
lw8484654
Rank: 1
等 级:新手上路
帖 子:223
专家分:0
注 册:2005-12-1
收藏
 问题点数:0 回复次数:3 
请教鼠标画线的问题

import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class TestMouseLine extends JFrame
{
int x,y;
int endX,endY;
public TestMouseLine()
{
Container c=getContentPane();

addMouseListener(new MouseAdapter()
{
public void mousePressed(MouseEvent e)
{
x=e.getX();
y=e.getY();
}
});

addMouseMotionListener(new MouseMotionAdapter()
{
public void mouseDragged(MouseEvent e)
{
endX = e.getX();
endY = e.getY();
repaint();
}
});

addWindowListener(new WindowAdapter()
{
public void windowClosing(WindowEvent e)
{
System.exit(0);
}
});

setSize(400,300);
setLocation(400,300);
show();
}
public void paint(Graphics g)
{
g.setColor(Color.red);
g.drawLine(x,y,endX,endY);
}

public static void main(String[] args)
{
new TestMouseLine();
}
}
为什么用鼠标画的时候有很多线呢?怎么样才能只有一跟线随着鼠标转呢?

搜索更多相关主题的帖子: 鼠标 
2006-06-21 22:28
lw8484654
Rank: 1
等 级:新手上路
帖 子:223
专家分:0
注 册:2005-12-1
收藏
得分:0 
super.paintComponent(g);这句话是什么意思呢?我不太明白.super关键字是想父类传递数据的.在这里为什么这么用呢?我想不太明白,请教!
2006-06-22 00:01
lw8484654
Rank: 1
等 级:新手上路
帖 子:223
专家分:0
注 册:2005-12-1
收藏
得分:0 
我觉得不太是啊.在这段代码里,清空多余的线是:image.clear();这句代码.
所以要重新请教下xuyijin.....
2006-06-22 00:11
lw8484654
Rank: 1
等 级:新手上路
帖 子:223
专家分:0
注 册:2005-12-1
收藏
得分:0 

import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import java.util.*;
public class TestMouseLine extends JFrame
{
int x,y;
int endX,endY;
ArrayList list;
public TestMouseLine()
{
Container c=getContentPane();
list=new ArrayList();

addMouseListener(new MouseAdapter()
{
public void mousePressed(MouseEvent e)
{
x=e.getX();
y=e.getY();
}
});

addMouseMotionListener(new MouseMotionAdapter()
{
public void mouseDragged(MouseEvent e)
{
endX = e.getX();
endY = e.getY();
repaint();
}
});

addWindowListener(new WindowAdapter()
{
public void windowClosing(WindowEvent e)
{
System.exit(0);
}
});

setSize(400,300);
setLocation(400,300);
show();
}
public void paint(Graphics g)
{
super.paint(g);
list.add(new MyLine(x,y,endX,endY));
Iterator it=list.iterator();
while(it.hasNext())
{
MyLine line=(MyLine)it.next();
line.drawMe(g);
}
}

public static void main(String[] args)
{
new TestMouseLine();
}
}
class MyLine
{
private int x,y;
private int endX,endY;
public MyLine(int x,int y,int endX,int endY)
{
this.x = x;
this.y = y;
this.endX = endX;
this.endY = endY;
}
public void drawMe(Graphics g)
{
g.setColor(Color.RED);
g.drawLine(x,y,endX,endY);
}
};
我重新改了之后的代码,为什么还是有那个问题啊?就是有很多线跟着鼠标转.......

2006-06-22 09:56
快速回复:请教鼠标画线的问题
数据加载中...
 
   



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

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