Java怎么制作写字板功能

发布时间:2020-05-29 18:38:22 作者:鸽子
来源:亿速云 阅读:407

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();
}
}

推荐阅读:
  1. 怎么制作php点赞功能
  2. 如何用redis制作抽奖功能?

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

java 写字板功能

上一篇:Java应用程序和applet程序之间有什么不同

下一篇:Java代码实现打印Word文档

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》