表决对话框 : 对话框 « 图形用户界面 « 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 » 图形用户界面 » 对话框屏幕截图 
表决对话框
表决对话框

/* From http://java.sun.com/docs/books/tutorial/index.html */

/*
 * Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * -Redistribution of source code must retain the above copyright notice, this
 *  list of conditions and the following disclaimer.
 *
 * -Redistribution in binary form must reproduce the above copyright notice,
 *  this list of conditions and the following disclaimer in the documentation
 *  and/or other materials provided with the distribution.
 *
 * Neither the name of Sun Microsystems, Inc. or the names of contributors may
 * be used to endorse or promote products derived from this software without
 * specific prior written permission.
 *
 * This software is provided "AS IS," without a warranty of any kind. ALL
 * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING
 * ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
 * OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN MIDROSYSTEMS, INC. ("SUN")
 * AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE
 * AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS
 * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST
 * REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL,
 * INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY
 * OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE,
 * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
 *
 * You acknowledge that this software is not designed, licensed or intended
 * for use in the design, construction, operation or maintenance of any
 * nuclear facility.
 */

import java.awt.BorderLayout;
import java.awt.Container;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.BorderFactory;
import javax.swing.BoxLayout;
import javax.swing.ButtonGroup;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JRadioButton;

public class VoteDialog extends JPanel {
  JLabel label;

  JFrame frame;

  String simpleDialogDesc = "The candidates";

  public VoteDialog(JFrame frame) {
    this.frame = frame;
    JLabel title;

    // Create the components.
    JPanel choicePanel = createSimpleDialogBox();

    System.out.println("passed createSimpleDialogBox");

    title = new JLabel("Click the \"Vote\" button"
        " once you have selected a candidate.", JLabel.CENTER);

    label = new JLabel("Vote now!", JLabel.CENTER);
    label.setBorder(BorderFactory.createEmptyBorder(10101010));
    choicePanel.setBorder(BorderFactory.createEmptyBorder(2020520));

    // Set the layout.
    setLayout(new BorderLayout());
    add(title, BorderLayout.NORTH);
    add(label, BorderLayout.SOUTH);
    add(choicePanel, BorderLayout.CENTER);
  }

  void setLabel(String newText) {
    label.setText(newText);
  }

  private JPanel createSimpleDialogBox() {
    final int numButtons = 4;
    JRadioButton[] radioButtons = new JRadioButton[numButtons];

    final ButtonGroup group = new ButtonGroup();

    JButton voteButton = null;

    final String defaultMessageCommand = "default";
    final String yesNoCommand = "yesno";
    final String yeahNahCommand = "yeahnah";
    final String yncCommand = "ync";

    radioButtons[0new JRadioButton(
        "<html>Candidate 1: <font color=red>Sparky the Dog</font></html>");
    radioButtons[0].setActionCommand(defaultMessageCommand);

    radioButtons[1new JRadioButton(
        "<html>Candidate 2: <font color=green>Shady Sadie</font></html>");
    radioButtons[1].setActionCommand(yesNoCommand);

    radioButtons[2new JRadioButton(
        "<html>Candidate 3: <font color=blue>R.I.P. McDaniels</font></html>");
    radioButtons[2].setActionCommand(yeahNahCommand);

    radioButtons[3new JRadioButton(
        "<html>Candidate 4: <font color=maroon>Duke the Java<font size=-2><sup>TM</sup></font size> Platform Mascot</font></html>");
    radioButtons[3].setActionCommand(yncCommand);

    for (int i = 0; i < numButtons; i++) {
      group.add(radioButtons[i]);
    }
    // Select the first button by default.
    radioButtons[0].setSelected(true);

    voteButton = new JButton("Vote");

    voteButton.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        String command = group.getSelection().getActionCommand();

        // ok dialog
        if (command == defaultMessageCommand) {
          JOptionPane.showMessageDialog(frame,
              "This candidate is a dog. Invalid vote.");

          // yes/no dialog
        else if (command == yesNoCommand) {
          int n = JOptionPane
              .showConfirmDialog(
                  frame,
                  "This candidate is a convicted felon. \nDo you still want to vote for her?",
                  "A Follow-up Question",
                  JOptionPane.YES_NO_OPTION);
          if (n == JOptionPane.YES_OPTION) {
            setLabel("OK. Keep an eye on your wallet.");
          else if (n == JOptionPane.NO_OPTION) {
            setLabel("Whew! Good choice.");
          else {
            setLabel("It is your civic duty to cast your vote.");
          }

          // yes/no (with customized wording)
        else if (command == yeahNahCommand) {
          Object[] options = "Yes, please""No, thanks" };
          int n = JOptionPane
              .showOptionDialog(
                  frame,
                  "This candidate is deceased. \nDo you still want to vote for him?",
                  "A Follow-up Question",
                  JOptionPane.YES_NO_OPTION,
                  JOptionPane.QUESTION_MESSAGE, null,
                  options, options[0]);
          if (n == JOptionPane.YES_OPTION) {
            setLabel("I hope you don't expect much from your candidate.");
          else if (n == JOptionPane.NO_OPTION) {
            setLabel("Whew! Good choice.");
          else {
            setLabel("It is your civic duty to cast your vote.");
          }

          // yes/no/cancel (with customized wording)
        else if (command == yncCommand) {
          Object[] options = "Yes!""No, I'll pass",
              "Well, if I must" };
          int n = JOptionPane.showOptionDialog(frame,
              "Duke is a cartoon mascot. \nDo you  "
                  "still want to cast your vote?",
              "A Follow-up Question",
              JOptionPane.YES_NO_CANCEL_OPTION,
              JOptionPane.QUESTION_MESSAGE, null, options,
              options[2]);
          if (n == JOptionPane.YES_OPTION) {
            setLabel("Excellent choice.");
          else if (n == JOptionPane.NO_OPTION) {
            setLabel("Whatever you say. It's your vote.");
          else if (n == JOptionPane.CANCEL_OPTION) {
            setLabel("Well, I'm certainly not going to make you vote.");
          else {
            setLabel("It is your civic duty to cast your vote.");
          }
        }
        return;
      }
    });
    System.out.println("calling createPane");
    return createPane(simpleDialogDesc + ":", radioButtons, voteButton);
  }

  private JPanel createPane(String description, JRadioButton[] radioButtons,
      JButton showButton) {
    int numChoices = radioButtons.length;
    JPanel box = new JPanel();
    JLabel label = new JLabel(description);

    box.setLayout(new BoxLayout(box, BoxLayout.Y_AXIS));
    box.add(label);

    for (int i = 0; i < numChoices; i++) {
      box.add(radioButtons[i]);
    }

    JPanel pane = new JPanel();
    pane.setLayout(new BorderLayout());
    pane.add(box, BorderLayout.NORTH);
    pane.add(showButton, BorderLayout.SOUTH);
    System.out.println("returning pane");
    return pane;
  }

  public static void main(String[] args) {
    JFrame frame = new JFrame("VoteDialog");

    Container contentPane = frame.getContentPane();
    contentPane.setLayout(new GridLayout(11));
    contentPane.add(new VoteDialog(frame));

    // Exit when the window is closed.
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    frame.pack();
    frame.setVisible(true);
  }
}

           
       
Related examples in the same category
1. 创建和使用对话框创建和使用对话框
2. 对话框和创建自己的组件对话框和创建自己的组件
3. 画框,可以很容易地支持内部框架对话框画框,可以很容易地支持内部框架对话框
4. 使用JOptionPane,自定义的选项列表使用JOptionPane,自定义的选项列表
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.