使用GridBagLayout在菜单栏下方定位按钮

时间:2018-03-27 10:19:49

标签: java swing layout-manager gridbaglayout

我想将下面的两个按钮添加到JMenuBar。我在GUI的整个窗口使用了一个根JPanel,我向它添加了不同的组件,到目前为止,两个,菜单栏和一个包含两个按钮的面板。但我不知道如何将GridBagConstraints放置在包含按钮的面板上,使其位于菜单栏的正下方。

这是我的代码:

JFrame f = new JFrame("Cliente AEMET");
JPanel panel_raiz = new JPanel();//root JPanel
GridBagConstraints gbc = new GridBagConstraints();

public VentanaPrincipal (){


    f.setSize(500, 400);
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    panel_raiz.setLayout(new GridBagLayout());
    //textoInfoMunicipio();
    //ventana_aviso(); //descomentar si se quiere ver el JDialog    
    //lista();
    menus(); //the JMenuBar
    botones(); //the buttons
    //lista_desplegable();
    //d.acerca_de();
    f.setContentPane(panel_raiz); //here I put all the components in the root jpanel
    f.setVisible(true); //esto siempre tiene que ir lo ultimo
}
public void menus(){ //this function puts the JMenuBar

    JMenuBar menuBar;
    JMenu archivo, ayuda;
    JMenuItem menuItem;

    //creamos la barra de menus
    menuBar = new JMenuBar();

    //vamos a crear los menus
    archivo = new JMenu("Archivo");
    ayuda = new JMenu("Ayuda");

    menuItem = new JMenuItem("Crear Municipio");
    archivo.add(menuItem);
    menuItem = new JMenuItem("Borrar Municipio");
    archivo.add(menuItem);
    menuItem = new JMenuItem("Salir");
    archivo.add(menuItem);

    menuItem = new JMenuItem("Acerca de");
    ayuda.add(menuItem);

    //los añadimos
    menuBar.add(archivo);
    menuBar.add(ayuda);

    //aqui ya habría que hacer la parte del gridBagLayout
    gbc.gridx = 0;
    gbc.gridy = 0;
    gbc.gridwidth = GridBagConstraints.REMAINDER;
    gbc.fill = GridBagConstraints.HORIZONTAL;
    gbc.anchor  = GridBagConstraints.NORTHWEST;
    gbc.weightx = 1.0;
    gbc.weighty = 0.5;

    panel_raiz.add(menuBar, gbc);
    //f.setContentPane(panel_raiz);
    //f.setJMenuBar(menuBar); esto lo teniamos antes de poner el gridBagLayout

}
public void botones(){

    ImageIcon addBBDD = new ImageIcon("./iconos/database-add-icon.png");
    ImageIcon deleteBBDD  = new ImageIcon("./iconos/database-delete-icon.png");
    JButton b1,b2;
    JPanel panel = new JPanel();


    panel.setLayout(new FlowLayout(FlowLayout.LEFT));
    b1 = new JButton("Municipio");
    b1.setIcon(addBBDD);
    panel.add(b1);
    b2 = new JButton("Municipio");
    b2.setIcon(deleteBBDD);
    panel.add(b2);

    //vamos a poner los constraints del gbl para los botones

    //gbc.gridx = 1;
    gbc.gridy = GridBagConstraints.RELATIVE;
    gbc.gridheight = GridBagConstraints.REMAINDER;
    gbc.fill = GridBagConstraints.VERTICAL;
    gbc.anchor  =GridBagConstraints.LINE_START;
    //gbc.weightx = 0.5;



    panel_raiz.add(panel,gbc);
    //f.setContentPane(panel_raiz); no hace falta, pues en el constructor al final, ponemos todo el panel con lo que fuimos añadiendo en cada metodo

    //esto lo teniamos antes de poner el gridbaglayout
    //f.setContentPane(panel);
    //f.pack();

}

This is my output is the following:

I want this

我想将我的按钮放在菜单栏的下方,但我不知道如何。

2 个答案:

答案 0 :(得分:1)

df_tx_all = df_tx_all[['col_tx_year',
                           'col_tx_month',
                           'col_tx_day']]
df_tx_all.columns=['year','month','day']

df["time_stamp"] = pd.to_datetime(df_tx_all)

不应将菜单栏添加到面板中,应将其添加到框架中:

panel_raiz.add(menuBar, gbc);
  

但我不知道如何将GridBagConstraints放置在包含按钮的面板上,使其位于菜单栏下方。

不需要使用GridBagLayout的面板。只是:

  1. 创建一个面板
  2. 将面板的布局设置为f.setJMenuBar( menuBar); ,即"左对齐"。
  3. 向面板添加按钮
  4. 使用FlowLayout
  5. 将面板添加到框架中

    阅读How to Use Menus上Swing教程中的部分以获取工作示例。本教程还有一个关于f.add(panel, BorderLayout.PAGE_START)的部分。为Swing基础知识提供方便的教程链接。

答案 1 :(得分:0)

正如@Andrew Thompson所说,您可以将问题分解为多个布局,将按钮放在一个条形图中,然后放置该条形图。

话虽如此,你可以把NORTH_WEST作为锚定值。