第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會有你想問的

JButton 干擾 JPanel 上的鼠標(biāo)偵聽器

JButton 干擾 JPanel 上的鼠標(biāo)偵聽器

互換的青春 2023-01-05 17:09:51
我有JPanel一個(gè)鼠標(biāo)偵聽器,用于檢查mouseEntered和,這與鼠標(biāo)聚焦到窗格上的按鈕并觸發(fā)事件mouseExited這一事實(shí)完全不同。mouseExited是否有設(shè)置使按鈕不占用鼠標(biāo)焦點(diǎn)?
查看完整描述

1 回答

?
白衣染霜花

TA貢獻(xiàn)1796條經(jīng)驗(yàn) 獲得超10個(gè)贊

在這種情況下,我從來不需要專門修改焦點(diǎn)。我也不熟悉 JPane,所以我認(rèn)為您指的是 JPanel。



    import java.awt.*;

    import java.awt.event.*;

    import javax.swing.*;


    public class FocusDemo {

       private JPanel  panel;

       private JButton button1;


       JFrame          frame = new JFrame("TempWindow");


       private FocusDemo() {

          panel = new JPanel();

          button1 = new JButton("Button");

          button1.addActionListener((ae) -> System.out.println("button pressed"));

          panel.add(button1);

          MyMouseListener ml = new MyMouseListener();

          panel.addMouseListener(ml);

          panel.addMouseMotionListener(ml);

          frame.add(panel);


       }


       public static void main(String[] args) {

          SwingUtilities.invokeLater(() -> new FocusDemo().start());

       }


       public void start() {

          frame.setLocationRelativeTo(null); // this line set the window in the

                                             // center of the screen

          frame.setPreferredSize(new Dimension(500, 500));

          frame.setDefaultCloseOperation(frame.EXIT_ON_CLOSE);

          frame.pack();

          frame.setLocationRelativeTo(null);

          frame.setVisible(true);


       }


       private class MyMouseListener extends MouseAdapter {

          public void mouseEntered(MouseEvent me) {

             System.out.println("mouse entered");

          }


          public void mouseExited(MouseEvent me) {

             System.out.println("mouse exited");

          }

       }


    }


查看完整回答
反對 回復(fù) 2023-01-05
  • 1 回答
  • 0 關(guān)注
  • 132 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號