3

現在、複数の jpanels を持つ jframe を使用して小さなアプリを作成しようとしています。これについていくつか質問があります。

  1. すべてを 1 つのクラス内に配置するよりも、16 の異なるパネルを使用してアプリを作成するよりクリーンな方法が必要です。他のいくつかのオプションは何ですか。

  2. 現在、私は3つのパネルしか持っていません。2 つのパネルに変更が反映されていないため、これ以上先に進みません。これらは、私が使用して呼び出す 2 つのパネルです。

    すべて削除する();
    追加();
    再検証();
    再描画();

呼び出している他のパネルが空白になる原因は何ですか?

これが私が持っているものです。どんなアドバイスも素晴らしいでしょう。ありがとう

public class Jframetest extends JFrame {

    private JPanel Home;
    private JPanel masslog;
    private JPanel DEH;

    /**
     * Launch the application.
     */
    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
            public void run() {
                try {
                    Jframetest frame = new Jframetest();
                    frame.setVisible(true);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
    }

    public Jframetest() {
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setResizable(false);
        setBounds(100, 100, 618, 373);
        Home = new JPanel();
        masslog = new JPanel();
        DEH = new JPanel();

        Home.setBackground(new Color(255, 250, 250));
        Home.setBorder(new LineBorder(Color.DARK_GRAY, 1, true));
        DEH.setBackground(new Color(255, 250, 250));
        DEH.setBorder(new LineBorder(Color.DARK_GRAY, 1, true));
        masslog.setBackground(new Color(255, 250, 250));
        masslog.setBorder(new LineBorder(Color.DARK_GRAY, 1, true));
        setContentPane(Home);
        Home.setLayout(null);

        JButton dehbutton = new JButton("Sign in");
        dehbutton.setFont(new Font("Tahoma", Font.PLAIN, 14));
        dehbutton.setForeground(new Color(0, 0, 0));
        dehbutton.setBackground(UIManager.getColor("Menu.selectionBackground"));
        DEH.add(dehbutton);

        JButton btnNewButton = new JButton("Data Entry login");
        btnNewButton.setFont(new Font("Tahoma", Font.PLAIN, 14));
        btnNewButton.setForeground(new Color(0, 0, 0));
        btnNewButton.setBackground(UIManager.getColor("Menu.selectionBackground"));

        btnNewButton.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent arg0) {
                Home.removeAll();
                Home.add(DEH);
                Home.revalidate();
                Home.repaint();

                // JOptionPane.showMessageDialog(null, "Username/Password incorrect");
            }
        });
        btnNewButton.setBounds(44, 214, 204, 61);
        Home.add(btnNewButton);

        final JButton button = new JButton("Manager and Associate login");
        button.setFont(new Font("Tahoma", Font.PLAIN, 14));
        button.setBackground(UIManager.getColor("EditorPane.selectionBackground"));
        button.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                Home.removeAll();
                Home.add(masslog);
                Home.revalidate();
                Home.repaint();

            }
        });
        button.setBounds(340, 214, 204, 61);
        Home.add(button);

        JTextPane txtpnEmployeeLogin = new JTextPane();
        txtpnEmployeeLogin.setForeground(Color.DARK_GRAY);
        txtpnEmployeeLogin.setBackground(Color.WHITE);
        txtpnEmployeeLogin.setFont(new Font("Tahoma", Font.PLAIN, 34));
        txtpnEmployeeLogin.setText("Employee Login");
        txtpnEmployeeLogin.setBounds(181, 123, 260, 52);
        Home.add(txtpnEmployeeLogin);

        JLabel lblNewLabel = new JLabel("New label");
        lblNewLabel.setIcon(new ImageIcon("C:\\Users\\Will and April\\Downloads\\your-logo-here.jpg"));
        lblNewLabel.setBounds(427, 11, 165, 67);
        Home.add(lblNewLabel);

    }

}
4

3 に答える 3

5

あなたの間違いは、レイアウト管理 API のサポートに関連しているため、重要な意味を持たないレイアウト を使用していることnullですrevalidateinvalidatevalidate

レイアウト マネージャーを削除したため、パネルには表示するサイズや場所を伝えるものがなくなりました。つまり、新しいコンポーネントを追加すると、サイズは 0x0、位置は 0x0 になります。

例で更新

さまざまなシステムでのフォントのレンダリング方法の違いの自動処理、動的でサイズ変更可能なレイアウト、画面解像度と DPI の違いなど、レイアウト マネージャー API を利用する理由はたくさんあります。

また、UI コード全体を 1 つのクラスにダンプしようとするのではなく、UI を責任のある領域に分割することをお勧めします (はい、私はこれが行われたのを見てきました。はい、私はキャリアのほとんどを人々の後片付けに費やしてきました)。誰がやる...)

ここに画像の説明を入力ここに画像の説明を入力ここに画像の説明を入力

この例ではCardLayoutGridBagLayoutを使用していますが、時間をかけて、デフォルトの JDK で利用可能なその他のいくつかを使いこなす必要があります。

import java.awt.CardLayout;
import java.awt.EventQueue;
import java.awt.Font;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.border.EmptyBorder;

public class FrameTest extends JFrame {
    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
            public void run() {
                try {
                    FrameTest frame = new FrameTest();
                    frame.setVisible(true);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
    }

    public FrameTest() {
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        final CardLayout layout = new CardLayout();
        setLayout(layout);
        LoginPane loginPane = new LoginPane();
        add(loginPane, "login");
        add(new NewLoginPane(), "newLogin");
        add(new ManagerLoginPane(), "managerLogin");

        loginPane.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                String command = e.getActionCommand();
                System.out.println(command);
                if ("new".equals(command)) {
                    layout.show(getContentPane(), "newLogin");
                } else if ("manager".equals(command)) {
                    layout.show(getContentPane(), "managerLogin");
                }
            }
        });

        layout.show(getContentPane(), "layout");

        pack();
        setLocationRelativeTo(null);
    }

    public class LoginPane extends JPanel {

        private JTextField userName;
        private JButton newButton;
        private JButton managerButton;

        public LoginPane() {
            setBorder(new EmptyBorder(20, 20, 20, 20));
            setLayout(new GridBagLayout());
            GridBagConstraints gbc = new GridBagConstraints();
            gbc.gridx = 0;
            gbc.gridy = 0;
            gbc.gridwidth = 2;
            gbc.weightx = 1;
            gbc.insets = new Insets(10, 10, 10, 10);

            userName = new JTextField(10);
            userName.setFont(new Font("Tahoma", Font.PLAIN, 34));
            add(userName, gbc);

            gbc.gridx = 0;
            gbc.gridy = 1;
            gbc.gridwidth = 1;
            gbc.weightx = 0;
            gbc.fill = GridBagConstraints.HORIZONTAL;

            newButton = new JButton("Sign in");
            newButton.setActionCommand("new");
            managerButton = new JButton("Manager and Associate login");
            managerButton.setActionCommand("manager");

            add(newButton, gbc);
            gbc.gridx++;
            add(managerButton, gbc);                
        }

        public void addActionListener(ActionListener listener) {
            newButton.addActionListener(listener);
            managerButton.addActionListener(listener);
        }

        public void remveActionListener(ActionListener listener) {
            newButton.removeActionListener(listener);
            managerButton.removeActionListener(listener);
        }

        public String getUserName() {               
            return userName.getText();                
        }            
    }

    public class NewLoginPane extends JPanel {
        public NewLoginPane() {
            setLayout(new GridBagLayout());
            add(new JLabel("New Login"));
        }           
    }

    public class ManagerLoginPane extends JPanel {
        public ManagerLoginPane() {
            setLayout(new GridBagLayout());
            add(new JLabel("Welcome overlord"));
        }           
    }
}
于 2013-09-13T00:06:12.470 に答える
1

すべてを 1 つのクラス内に配置するよりも、16 の異なるパネルを使用してアプリを作成するよりクリーンな方法が必要です。他のいくつかのオプションは何ですか。

必要な数のクラスを自由に作成して使用できます。したがって、別の場所で再利用したい複雑な GUI を JPanel が保持している場合や、独自の個別の機能を備えている場合は、必ずコードを独自のクラスに配置してください。

現在、私は3つのパネルしか持っていません。2 つのパネルに変更が反映されていないため、これ以上先に進みません。これらは、私が使用して呼び出す 2 つのパネルです。

removeAll();
add();
revalidate();
repaint(); 

CardLayout を再発明しようとしているようなにおいがします。すぐに使えるのに、なぜ再発明するのでしょうか。

はい、MadProgrammer が null レイアウトについて述べていることはすべて真実です。使用は避けるべきです。

于 2013-09-13T00:06:01.793 に答える
0

ああ、CardLayout がうまくいくかもしれません。JTabbedPane を使用することを考えました。コード例での私の考えは次のとおりです。

import java.awt.Color;
import java.awt.Dimension;
import java.awt.FlowLayout;

import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTabbedPane;
import javax.swing.SwingUtilities;


public class TabbedPaneDemo extends JFrame {

    public TabbedPaneDemo() {

        // set the layout of the frame to all the addition of all components
        setLayout(new FlowLayout());

        // create a tabbed pane
        JTabbedPane tabbedPane = new JTabbedPane();
        tabbedPane.setPreferredSize(new Dimension(500,500));
        add(tabbedPane);

        // create three panels to be added to this frame
        JPanel redPanel = new JPanel();
        JPanel greenPanel = new JPanel();
        JPanel bluePanel = new JPanel();

        // set the colors of the panels
        redPanel.setBackground(Color.RED);
        greenPanel.setBackground(Color.GREEN);
        bluePanel.setBackground(Color.BLUE);

        // set the preferred size of each panel
        redPanel.setPreferredSize(new Dimension(150,150));
        greenPanel.setPreferredSize(new Dimension(150,150));
        bluePanel.setPreferredSize(new Dimension(150,150));

        // add the panels to the tabbed pane
        tabbedPane.addTab("Red Panel", redPanel);
        tabbedPane.addTab("Green Panel", greenPanel);
        tabbedPane.addTab("Blue Panel", bluePanel);

        // finish initializing this window
        setSize(500,500); // size the window to fit its components (i.e. panels in this case)
        setLocationRelativeTo(null); // center this window
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // exit application when this window is closed
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                new TabbedPaneDemo().setVisible(true);
            }
        });
    }

}

タブ付きペインのデモ

1 つのクラスに 16 枚のパネルがあることについての他の質問については、次のとおりです。

  1. パネル内にパネルを配置して、物事を整理できます。
  2. JPanel をサブクラス化し、サブクラスを独自の .java ファイルに入れることができます。

さらにサポートが必要な場合は、メールをお送りください。kaydell@yahoo.com (私は人々のプログラミングを手伝うのが好きで、そこからも学んでいます。)

于 2013-09-13T20:00:59.723 に答える