<tfoot id='VMW51'></tfoot>

  • <legend id='VMW51'><style id='VMW51'><dir id='VMW51'><q id='VMW51'></q></dir></style></legend>

      <small id='VMW51'></small><noframes id='VMW51'>

      <i id='VMW51'><tr id='VMW51'><dt id='VMW51'><q id='VMW51'><span id='VMW51'><b id='VMW51'><form id='VMW51'><ins id='VMW51'></ins><ul id='VMW51'></ul><sub id='VMW51'></sub></form><legend id='VMW51'></legend><bdo id='VMW51'><pre id='VMW51'><center id='VMW51'></center></pre></bdo></b><th id='VMW51'></th></span></q></dt></tr></i><div id='VMW51'><tfoot id='VMW51'></tfoot><dl id='VMW51'><fieldset id='VMW51'></fieldset></dl></div>
        • <bdo id='VMW51'></bdo><ul id='VMW51'></ul>

      1. 创建 Java 对话框

        时间:2023-09-29

          <bdo id='ovsE9'></bdo><ul id='ovsE9'></ul>

          <small id='ovsE9'></small><noframes id='ovsE9'>

            1. <legend id='ovsE9'><style id='ovsE9'><dir id='ovsE9'><q id='ovsE9'></q></dir></style></legend>
            2. <i id='ovsE9'><tr id='ovsE9'><dt id='ovsE9'><q id='ovsE9'><span id='ovsE9'><b id='ovsE9'><form id='ovsE9'><ins id='ovsE9'></ins><ul id='ovsE9'></ul><sub id='ovsE9'></sub></form><legend id='ovsE9'></legend><bdo id='ovsE9'><pre id='ovsE9'><center id='ovsE9'></center></pre></bdo></b><th id='ovsE9'></th></span></q></dt></tr></i><div id='ovsE9'><tfoot id='ovsE9'></tfoot><dl id='ovsE9'><fieldset id='ovsE9'></fieldset></dl></div>
                  <tbody id='ovsE9'></tbody>

                1. <tfoot id='ovsE9'></tfoot>
                  本文介绍了创建 Java 对话框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  创建对话框最简单的方法是什么:

                  What would be the easiest way for creating a dialog:

                  • 在一个窗口中,我提供信封寻址数据,同时从大小列表中设置字体类型
                  • 单击确定"后,在同一窗口或下一个窗口中,我可以预览使用给定名称的信封外观,并使用选定的字体大小

                  它应该类似于:

                  替代文字 http://img15.imageshack.us/img15/7355/lab10aa.gif

                  我应该使用 Jdialog 吗?还是 JOptionPane 就足够了?下一步将是选择字体和背景的颜色,所以我必须牢记这一点.

                  Should I use Jdialog? Or will JOptionPane will be enough? The next step will be to choose color of font and background so I must keep that in mind.

                  推荐答案

                  如果需要使用JOptionPane:

                  If you need to use JOptionPane :

                  import java.awt.*;
                  import javax.swing.*;
                  
                  public class Main extends JFrame {
                  
                      private static JTextField nameField = new JTextField(20);
                      private static JTextField surnameField = new JTextField();
                      private static JTextField addr1Field = new JTextField();
                      private static JTextField addr2Field = new JTextField();
                      private static JComboBox sizes = new JComboBox(new String[] { "small", "medium", "large", "extra-large" });
                  
                      public Main(){
                          JPanel mainPanel = new JPanel();
                          mainPanel.setLayout(new BoxLayout(mainPanel, BoxLayout.Y_AXIS));
                          getContentPane().add(mainPanel);
                  
                          JPanel addrPanel = new JPanel(new GridLayout(0, 1));
                          addrPanel.setBorder(BorderFactory.createTitledBorder("Receiver"));
                          addrPanel.add(new JLabel("Name"));
                          addrPanel.add(nameField);
                          addrPanel.add(new JLabel("Surname"));
                          addrPanel.add(surnameField);
                          addrPanel.add(new JLabel("Address 1"));
                          addrPanel.add(addr1Field);
                          addrPanel.add(new JLabel("Address 2"));
                          addrPanel.add(addr2Field);
                          mainPanel.add(addrPanel);
                          mainPanel.add(new JLabel(" "));
                          mainPanel.add(sizes);
                  
                          String[] buttons = { "OK", "Cancel"};
                  
                          int c = JOptionPane.showOptionDialog(
                                  null,
                                  mainPanel,
                                  "My Panel",
                                  JOptionPane.DEFAULT_OPTION,
                                  JOptionPane.PLAIN_MESSAGE,
                                  null,
                                  buttons,
                                  buttons[0]
                           );
                  
                          if(c ==0){
                              new Envelope(nameField.getText(), surnameField.getText(), addr1Field.getText()
                                      , addr2Field.getText(), sizes.getSelectedIndex());
                          }
                  
                          setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                          pack();
                          setVisible(true);
                      }
                  
                      public static void main(String[] args) {
                          new Main();
                      }
                  }
                  

                  这篇关于创建 Java 对话框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:致命异常:android.view.WindowManager$BadTokenException 无法 下一篇:如何获得对话框大小?

                  相关文章

                  最新文章

                  <small id='4hEGn'></small><noframes id='4hEGn'>

                2. <i id='4hEGn'><tr id='4hEGn'><dt id='4hEGn'><q id='4hEGn'><span id='4hEGn'><b id='4hEGn'><form id='4hEGn'><ins id='4hEGn'></ins><ul id='4hEGn'></ul><sub id='4hEGn'></sub></form><legend id='4hEGn'></legend><bdo id='4hEGn'><pre id='4hEGn'><center id='4hEGn'></center></pre></bdo></b><th id='4hEGn'></th></span></q></dt></tr></i><div id='4hEGn'><tfoot id='4hEGn'></tfoot><dl id='4hEGn'><fieldset id='4hEGn'></fieldset></dl></div>

                  • <bdo id='4hEGn'></bdo><ul id='4hEGn'></ul>

                  1. <legend id='4hEGn'><style id='4hEGn'><dir id='4hEGn'><q id='4hEGn'></q></dir></style></legend>
                      <tfoot id='4hEGn'></tfoot>