画框,可以很容易地支持内部框架对话框 : 对话框 « 图形用户界面 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 图形用户界面 » 对话框屏幕截图 
画框,可以很容易地支持内部框架对话框
画框,可以很容易地支持内部框架对话框

/*
Java Swing, 2nd Edition
By Marc Loy, Robert Eckstein, Dave Wood, James Elliott, Brian Cole
ISBN: 0-596-00408-7
Publisher: O'Reilly 
*/
// DialogDesktop.java
//A frame that can easily support internal frame dialogs.
//

import java.awt.Dimension;
import java.awt.GridBagLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.ComponentAdapter;
import java.awt.event.ComponentEvent;

import javax.swing.JButton;
import javax.swing.JDesktopPane;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JPanel;

public class DialogDesktop extends JFrame {

  public DialogDesktop(String title) {
    super(title);
    setDefaultCloseOperation(EXIT_ON_CLOSE);

    final JDesktopPane desk = new JDesktopPane();
    setContentPane(desk);

    // Create our "real" application container; use any layout manager we
    // want.
    final JPanel p = new JPanel(new GridBagLayout());

    // Listen for desktop resize events so we can resize p. This will ensure
    // that
    // our container always fills the entire desktop.
    desk.addComponentListener(new ComponentAdapter() {
      public void componentResized(ComponentEvent ev) {
        Dimension deskSize = desk.getSize();
        p.setBounds(00, deskSize.width, deskSize.height);
        p.validate();
      }
    });

    // Add our application panel to the desktop. Any layer below the
    // MODAL_LAYER
    // (where the dialogs will appear) is fine. We'll just use the default
    // in
    // this example.
    desk.add(p);

    // Fill out our app with a few buttons that create dialogs
    JButton input = new JButton("Input");
    JButton confirm = new JButton("Confirm");
    JButton message = new JButton("Message");
    p.add(input);
    p.add(confirm);
    p.add(message);

    input.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent ev) {
        JOptionPane.showInternalInputDialog(desk, "Enter Name");
      }
    });

    confirm.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent ev) {
        JOptionPane.showInternalConfirmDialog(desk, "Is this OK?");
      }
    });

    message.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent ev) {
        JOptionPane.showInternalMessageDialog(desk, "The End");
      }
    });
  }

  // A simple test program
  public static void main(String[] args) {
    DialogDesktop td = new DialogDesktop("Desktop");
    td.setSize(350250);
    td.setVisible(true);
  }
}

           
       
Related examples in the same category
1. 创建和使用对话框创建和使用对话框
2. 对话框和创建自己的组件对话框和创建自己的组件
3. 使用JOptionPane,自定义的选项列表使用JOptionPane,自定义的选项列表
4. 区别不同类型的选项窗格区别不同类型的选项窗格
5. 表决对话框表决对话框
6. 创建简单的关于对话框创建简单的关于对话框
7. 对话框分隔器对话框分隔器
8. 消息对话框消息对话框
9. 错误信息对话框错误信息对话框
10. 信息对话框定制标志信息对话框定制标志
11. 输入对话框与用户定义的标识输入对话框与用户定义的标识
12. 确认对话框确认对话框
13. 默认按钮对话框:按Enter键以激活默认按钮对话框:按Enter键以激活
14. 简单的对话:是否简单的对话:是否
15. 提示用户的ID和密码
16. 简单的保存对话框演示简单的保存对话框演示
17. JOptionPane实例JOptionPane实例
18. 创建弹出彩色样本创建弹出彩色样本
19. 简单输入对话框简单输入对话框
20. 没有按钮的对话框没有按钮的对话框
21. Message Dialog demo Message Dialog demo
22. 对话框Esc键对话框Esc键
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.