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

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,array;
public TestMouseLine()
{
Container c=getContentPane();
list=new ArrayList();
array=new ArrayList();

addMouseListener(new MouseAdapter()
{
public void mousePressed(MouseEvent e)
{
x=e.getX();
y=e.getY();
}
public void mouseReleased(MouseEvent e)
{
for(int i=0;i<list.size();i++)
array.add(list.get(i));
}
});

addMouseMotionListener(new MouseMotionAdapter()
{
public void mouseDragged(MouseEvent e)
{
endX = e.getX();
endY = e.getY();
list.clear();
list.add(new MyLine(x,y,endX,endY));
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);
Iterator it=array.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);
}
};
为什么非要画下一条线的时候,才出现上一条线呢?比如:在画第2条线的时候,才出现第一条线...请指教!!!

搜索更多相关主题的帖子: 鼠标 
2006-06-22 10:42
千里冰封
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:灌水之王
等 级:版主
威 望:155
帖 子:28477
专家分:59
注 册:2006-2-26
收藏
得分:0 
你这个应该利用边画边看的方法
增加一个鼠标拖动的事件就可以了
并且中间增加一个变量用于存储鼠标拖动时的座标值
在鼠标释放的时候就把它清0就可以了
这个时候就算画成了一条线,然后画别的线也是这个道理

可惜不是你,陪我到最后
2006-06-22 10:46
lw8484654
Rank: 1
等 级:新手上路
帖 子:223
专家分:0
注 册:2005-12-1
收藏
得分:0 

应该是这样的.我利用一个ArrayList去保存画出来的线,我应该再创建一个ArrayList对象去保存已经画出来的线...

2006-06-22 10:57
千里冰封
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:灌水之王
等 级:版主
威 望:155
帖 子:28477
专家分:59
注 册:2006-2-26
收藏
得分:0 

我在你的基础上改的
你看看
import java.awt.*;
import javax.swing.*;

import sun.security.krb5.internal.j;

import java.awt.event.*;
import java.util.*;
public class TestMouseLine extends JPanel
{
int x,y;
int endX,endY;
ArrayList list,array;
public TestMouseLine()
{
list=new ArrayList();
array=new ArrayList();

addMouseListener(new MouseAdapter()
{
public void mousePressed(MouseEvent e)
{
x=e.getX();
y=e.getY();
}
public void mouseReleased(MouseEvent e)
{
MyLine my=new MyLine(x,y,e.getX(),e.getY());
array.add(my);
repaint();
}
});

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


}
public void paintComponent(Graphics g)
{
super.paintComponent(g);
Iterator it=array.iterator();
while(it.hasNext())
{
MyLine line=(MyLine)it.next();
line.drawMe(g);
}
g.drawLine(x,y,endX,endY);
}

public static void main(String[] args)
{
JFrame jf=new JFrame();
jf.getContentPane().add(new TestMouseLine(),BorderLayout.CENTER);
jf.setBounds(300,300,400,400);
jf.setVisible(true);
jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}
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);
}
};


我只是改成把东西画在JPanel上,然后把JPanel加在JFrame中
并且在鼠标拖动的时候改了一下
这个程序也简单了
你试试,是不是你想要的效果


可惜不是你,陪我到最后
2006-06-22 10:59
快速回复:重新改动之后的鼠标画线问题
数据加载中...
 
   



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

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