⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 clicklabel.java

📁 java写的模仿windows上的挖雷的游戏
💻 JAVA
字号:

import javax.swing.*;
import javax.swing.event.*;
import java.awt.event.*;
public class ClickLabel extends MouseAdapter
{
  int i,j;
  MainFrame theFrame;
  ClickLabel(MainFrame theFrame,int i,int j)
  {
    this.i = i;
    this.j = j;
    this.theFrame = theFrame;
  }

  public void mousePressed(MouseEvent e)
  {
    if(e.getButton()==e.BUTTON1)
      theFrame.mineButton[i][j].setLeftFlag(true);
    else if(e.getButton()==e.BUTTON3)
      theFrame.mineButton[i][j].setRightFlag(true);
    if(theFrame.mineButton[i][j].getLeftFlag()&&theFrame.mineButton[i][j].getRightFlag())
      theFrame.twoButtonPressed(i,j);
  }
  public void mouseReleased(MouseEvent e)
  {
    if(theFrame.mineButton[i][j].getLeftFlag()&&theFrame.mineButton[i][j].getRightFlag())
    {
      theFrame.mineButton[i][j].setLeftFlag(false);
      theFrame.mineButton[i][j].setRightFlag(false);
      theFrame.twoButtonReleasedOnLabel(i,j);
      return;
    }
    
    
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -