java 写字板_用Java实现写字板功能!

原标题:用Java实现写字板功能!

import java.awt.Color;

import java.awt.Container;

import java.awt.FlowLayout;

import java.awt.Graphics;

import java.awt.event.MouseEvent;

import java.awt.event.MouseListener;

import java.awt.event.MouseMotionAdapter;

import javax.swing.ButtonGroup;

import javax.swing.JButton;

import javax.swing.JFrame;

import javax.swing.JRadioButton;

public class TestEventMouse extends JFrame{

Container contentPanel; //内容格引用

JButton a1,a2,a3,a4,a5;//按钮

JRadioButton backGroundRadio,foreGroundRadio; //定义两个单选框

ButtonGroup radioGroup; //单选按钮组

int xValue,yValue; //保留鼠标位置(x,y)

JFrame jf=this;

public TestEventMouse(){ //构造函数

super("写字板");

a1=new JButton("Black");//实现五个按钮

a2=new JButton("Blue");

a3=new JButton("Red");

a4=new JButton("White");

a5=new JButton("Yellow");

contentPanel=this.getContentPane();//获取内容格

contentPanel.setLayout(new FlowLayout());//设置内容格的布局管理器

backGroundRadio=new JRadioButton("backGround"); //实例化复选框

foreGroundRadio=new JRadioButton("foreGround");

contentPanel.add(backGroundRadio);//添加到内容格里面去

contentPanel.add(foreGroundRadio);

contentPanel.add(a1);//添加按钮

contentPanel.add(a2);

contentPanel.add(a3);

contentPanel.add(a4);

contentPanel.add(a5);

MouseListenerHandler mou=new MouseListenerHandler(); //实现一个事件监听类

a1.addMouseListener(mou); //注册为五个按钮的监听者

a2.addMouseListener(mou);

a3.addMouseListener(mou);

a4.addMouseListener(mou);

a5.addMouseListener(mou);

radioGroup=new ButtonGroup(); //实例单选按钮组

radioGroup.add(backGroundRadio);//将两个radio按钮构成一个组

radioGroup.add(foreGroundRadio);

addMouseMotionListener( //匿名类

new MouseMotionAdapter(){ //因为是当前一个对象调用,所以搞了个适配器玩玩

public void mouseDragged(MouseEvent e){

xValue=e.getX();

yValue=e.getY();

repaint(); //调用paint()方法

}

}

);

setSize(500,500);

setVisible(true); //设置可见

}

public class MouseListenerHandler implements MouseListener{ //鼠标事件监听类

public void mousePressed(MouseEvent e){

if(e.getSource()==a1){ //用getSouce()获取对象

if(backGroundRadio.isSelected())

contentPanel.setBackground(Color.BLACK);//用内容格来设置背景色

else

jf.setForeground(Color.BLACK); //用Frame框架来设置前景色

}

if(e.getSource()==a2){

if(backGroundRadio.isSelected())

contentPanel.setBackground(Color.BLUE);

else

jf.setForeground(Color.BLUE);

}

if(e.getSource()==a3){

if(backGroundRadio.isSelected())

contentPanel.setBackground(Color.RED);

else

jf.setForeground(Color.RED);

}

if(e.getSource()==a4){

if(backGroundRadio.isSelected())

contentPanel.setBackground(Color.WHITE);

else

jf.setForeground(Color.WHITE);

}

if(e.getSource()==a5){

if(backGroundRadio.isSelected())

contentPanel.setBackground(Color.YELLOW);

else

jf.setForeground(Color.YELLOW);

}

}

public void mouseClicked(MouseEvent e) {

}

public void mouseEntered(MouseEvent e) {

}

public void mouseExited(MouseEvent e) {

}

public void mouseReleased(MouseEvent e) {

}

}

public void paint(Graphics g){

g.fillOval(xValue, yValue, 4, 4);

}

public static void main(String args[]){

new TestEventMouse();

}

}

责任编辑:

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值