java - 如何在鼠标进入另一个 JPanel 时更改 JPanel 的背景颜色

标签 java swing mouselistener gridbaglayout

我是 Java Swing 的新手,这是我的第一个问题,所以请原谅我的错误。我正在尝试制作一个 JPanel(容器),它有一个 GridBagLayout 并包含许多将用作按钮的较小的 Jpanel。我为每个小 JPanel 设置了一个 mouseEntered Listener,它将背景颜色更改为进入的颜色。 是否也可以更改该面板的行和列的颜色? 例如,如果我在 Cell(4,3) 中输入鼠标,我想要单元格 (4,0) 的背景 和 (0,3) 也被改变。

这是我的容器:

public class CellPane extends JPanel{

   private List<Cell> cellList;
   private final GridBagConstraints gbc;
   private Cell cell;
   private int counter;

   public CellPane(){

     this.setLayout(new GridBagLayout()); 
     gbc = new GridBagConstraints();
     cellList = new ArrayList<>();
     counter = 0;
        for(int row=0;row<15;row++)
            for(int col=0;col<31;col++){
                gbc.gridx = col;
                gbc.gridy = row;

                cell = new Cell(col ,row);

                Border border = null;
                if (row < 14) {
                    if (col < 30) {
                        border = new MatteBorder(1, 1, 0, 0, new Color(153,204,204));
                    } else {
                        border = new MatteBorder(1, 1, 0, 1, new Color(153,204,204));
                    }
                } else {
                    if (col < 30) {
                        border = new MatteBorder(1, 1, 1, 0, new Color(153,204,204));
                    } else {
                        border = new MatteBorder(1, 1, 1, 1, new Color(153,204,204));
                    }
                }

                cell.setBorder(border);
                cellList.add(counter, cell);
                counter++;
                this.add(cell,gbc);                   
            }  
        System.out.println("Count: " + this.getComponentCount());
        for(Cell c: cellList){
            System.out.println(c.getCellCol()+" "+c.getCellRow());
        }
   }

   public List getCellList(){
       return cellList;
   }
   public int getCellCount(){
       return counter;
   }}

这是细胞类

class Cell extends JPanel implements MouseListener, PropertyChangeListener{

    private final Color defaultBackground = new Color(240,240,240);
    private final Color clickedColor = new Color(204,0,102);
    private final Color movingColor = new Color(153,255,153);
    private final int row ,col;
    //private CellPane cp = new CellPane();

    public Cell(int x, int y) {
      this.col = x;
      this.row = y;

      if (col>0 & row>0){
        addMouseListener(this);           
      }
      if(col==0 | row == 0){
          addPropertyChangeListener(this);
      }
      if (col == 0){
          this.setPreferredSize(new Dimension(100,35));
      }
      else{
          this.setPreferredSize(new Dimension(35,35));
      }
    }

@Override
public void mouseClicked(MouseEvent me) {
}

@Override
public void mousePressed(MouseEvent me) {
    if(col>0 & row>0 & this.getBackground().equals(movingColor)){
        this.setBackground(clickedColor);        
    }
    else if(this.getBackground().equals(clickedColor)){
        this.setBackground(defaultBackground);
    }
}

@Override
public void mouseReleased(MouseEvent me) {
}

@Override
public void mouseEntered(MouseEvent me) {
    if(col>0 & row>0 & this.getBackground().equals(defaultBackground)){
        this.setBackground(movingColor);
        System.out.println("You clicked on: " + col +" " +row);
        System.out.println("List Size:  " );
    }       
}

@Override
public void mouseExited(MouseEvent me) {
    if(col>0 & row>0 & this.getBackground().equals(movingColor)){
        this.setBackground(defaultBackground);        
    }       
}

@Override
public void propertyChange(PropertyChangeEvent pce) {

}

public int getCellCol(){
    return this.col;
}
public int getCellRow(){
    return this.row;
}}

这里是主类

public class ScheduleForm {

private JFrame mainFrame;
private JPanel pnlButtons;
private JPanel pnlCalendar;
private CellPane cellPane;


    public ScheduleForm(){
        initButtonPanel();
        initCalendarPane();
        initFrame();
    }                    

    private void initCalendarPane(){
       pnlCalendar = new JPanel(new BorderLayout());
       pnlCalendar.setPreferredSize(new Dimension(100,500));
       pnlCalendar.setBorder(BorderFactory.createLineBorder(Color.ORANGE));
       cellPane = new CellPane();
       pnlCalendar.add(cellPane,BorderLayout.CENTER);
    }

    private void initButtonPanel(){
       pnlButtons = new JPanel(new BorderLayout());
       pnlButtons.setPreferredSize(new Dimension(100,100));
       pnlButtons.setBorder(BorderFactory.createTitledBorder("Buttons"));  
            }

    private void initFrame(){                                            
       mainFrame = new JFrame("Schedule");
       mainFrame.setLayout(new BorderLayout());
       mainFrame.add(pnlButtons, BorderLayout.NORTH);
       mainFrame.add(pnlCalendar,BorderLayout.CENTER);
       mainFrame.pack();
       mainFrame.setLocationRelativeTo(mainFrame);
       mainFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
       mainFrame.setVisible(true);
       mainFrame.setExtendedState(java.awt.Frame.MAXIMIZED_BOTH);                
    }

    public static void main(String args[]) {
    /* Set the Nimbus look and feel */
    //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
    /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
     * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html 
     */
    try {
        for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
            if ("Nimbus".equals(info.getName())) {
                javax.swing.UIManager.setLookAndFeel(info.getClassName());
                break;
            }
        }
    } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | javax.swing.UnsupportedLookAndFeelException ex) {
        java.util.logging.Logger.getLogger(PopTest.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
    }
    //</editor-fold>

    /* Create and display the form */
    java.awt.EventQueue.invokeLater(new Runnable() {
        @Override
        public void run() {                                
            try {
                UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
            } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
            }
            ////EDW tha mpei to neo antikeimeno
            ScheduleForm scheduleForm = new ScheduleForm();
        }
    });
}}

最佳答案

可能的解决方案:

  1. 为 Cell 提供公共(public)方法以允许外部类更改背景颜色状态。
  2. 在 Cell 的 MouseListener 中,每当鼠标进入或离开时触发属性更改。
  3. 让您的模型(如果使用推荐的干净 MVC 模式)监听这些更改并将更改通知 View ,以便行和列的颜色可以更改。
  4. 如果不使用干净的 MVC,而是使用快速而肮脏的 GUI,则让 CellPane 将 PropertyChangeListener 添加到单元格,以便通知单个单元格状态更改 WRT 鼠标进入/离开,然后 CellPane 可以更改行和列的颜色通过调用上面第 1 点中的公共(public)方法。

关于java - 如何在鼠标进入另一个 JPanel 时更改 JPanel 的背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32568984/

相关文章:

javax.persistence.PersistenceException : org. hibernate.PersistentObjectException: 错误

java - 鼠标点击坐标不起作用

java - 使用 Java mouseClicked 事件处理程序来更改图标

javascript - 无法在 angularjs js 或 jQuery 中按下 alt 键和按下 alt 键

java - 在 Main 方法中运行两个线程

java - Spring MVC - 如何将商品添加到购物车?

java - 基于 Netty 的非阻塞 REST 框架

java - 在 JLabel 中设置位置

java - 在激活菜单项时显示标签

java - 如何解决我的登录/创建帐户程序中的这个序列化错误?