자바 클릭 단추 이벤트 팝 업 서브 창 구현
3534 단어 자바버튼 을 클릭 하 다팝 업 창
요청:
1.부모 창 에 단추 추가
2.버튼 을 누 르 면 팝 업 창
주의:JDK 1.7 버 전 입 니 다.
JDK 1.7 이전에 JFrame 은 하위 창 을 직접 추가 할 수 없습니다.먼저 JInternalFrame 을 JDesktop Pane 에 추가 한 다음 에 JDesktop Pane 을 부모 창 에 추가 하여 이 작업 을 완성 해 야 합 니 다.
(1)부모 클래스 JFrame 만 들 기
package com.java.view;
import java.awt.BorderLayout;
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import javax.swing.JDesktopPane;
import javax.swing.JButton;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import javax.swing.JMenuBar;
public class Testfrm extends JFrame {
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
Testfrm frame = new Testfrm();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the frame.
*/
public Testfrm() {
setTitle("\u7236\u7A97\u53E3");//
setBounds(400, 300, 800, 600);//
getContentPane().setLayout(null);//
JButton bt = new JButton("\u6309\u94AE");// bt
bt.setBounds(0, 0, 93, 23);//
getContentPane().add(bt);//
bt.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
Testinterfrm testinterfrm=new Testinterfrm();//
testinterfrm.setVisible(true);//
getContentPane().add(testinterfrm);//
}
});
}
}
(2)하위 클래스 JInternalFrame 구축
package com.java.view;
import java.awt.BorderLayout;
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import javax.swing.JDesktopPane;
import javax.swing.JButton;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import javax.swing.JMenuBar;
public class Testfrm extends JFrame {
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
Testfrm frame = new Testfrm();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the frame.
*/
public Testfrm() {
setTitle("\u7236\u7A97\u53E3");//
setBounds(400, 300, 800, 600);//
getContentPane().setLayout(null);//
JButton bt = new JButton("\u6309\u94AE");// bt
bt.setBounds(0, 0, 93, 23);//
getContentPane().add(bt);//
bt.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
Testinterfrm testinterfrm=new Testinterfrm();//
testinterfrm.setVisible(true);//
getContentPane().add(testinterfrm);//
}
});
}
}
실행 결과:이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.