如何在JFrame / java中从右到左对齐?

时间:2014-04-06 19:32:12

标签: java swing jframe alignment vertical-alignment

我写了这段代码,但是我从右到左对齐时遇到了问题。 我尝试了几件事,但都没有。 我知道这可以通过使用坐标来完成,但我想要一种我不需要为每个单词做到这一点的方法。我该如何以正确的方式做到这一点?

代码:

import java.util.*;
import javax.swing.*;
import java.awt.*;



public class GUI {
//messages 
public static final String ConnectC_MSG    = "התחבר"    ;
public static final String DisconnectC_MSG = "התנתק"    ;
public static final String ServerLBL_MSG   = "שרת יעד:"  ;
public static final String UsernameLBL_MSG = ":שם משתמש";
public static final String PasswordLBL_MSG = ":סיסמא"   ;
public static final String PortLBL_MSG     = ":פתחה"    ;
//sizes
public static final int SreverTxtfield_Width   = 10;
public static final int UsernameTxtfield_width = 10;
public static final int PasswordTxtfield_width = 10;
public static final int PortTxtfield_width     = 5 ;
public static final int WINDOW_WIDTH  = 800;
public static final int WINDOW_HEIGHT = 200;


static JFrame frame1;
static Container pane;

static JButton btnConnect = new JButton(ConnectC_MSG),
               btiDiscinnect = new JButton(DisconnectC_MSG);
static JLabel lblServer   = new JLabel(ServerLBL_MSG),
              lblUsername = new JLabel(UsernameLBL_MSG),
              lblPassword = new JLabel(PasswordLBL_MSG),
              lblPort     = new JLabel(PortLBL_MSG);

static JTextField txtServer   = new JTextField(SreverTxtfield_Width),
                  txtUsername = new JTextField(UsernameTxtfield_width),
                  txtPort     = new JTextField(PortTxtfield_width);

static JPasswordField txtPassword = new JPasswordField(PasswordTxtfield_width);

static Insets insets;


public static void main(String[] args) {
    frame1 = new JFrame ("הדגמה");
    frame1.setSize(WINDOW_WIDTH,WINDOW_HEIGHT);
    frame1.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
    pane = frame1.getContentPane();
    pane.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);

    insets = pane.getInsets();
    pane.setLayout(null);   
    pane.add(lblServer);
    pane.add(lblUsername);
    pane.add(lblPassword);
    pane.add(lblPort);
    pane.add(txtServer);
    pane.add(txtUsername);
    pane.add(txtPassword);
    pane.add(txtPort);
    lblServer.setBounds((int)(insets.right),insets.top,
            lblServer.getPreferredSize().width, lblServer.getPreferredSize().height);
    txtServer.setBounds(lblServer.getX()+lblServer.getWidth(), lblServer.getY()+lblServer.getHeight(),
            txtServer.getPreferredSize().width, txtServer.getPreferredSize().height);

    frame1.setVisible(true);

}

}

2 个答案:

答案 0 :(得分:2)

尝试类似:

JPanel panel = new JPanel( new FlowLayout(FlowLayout.RIGHT) );
panel.add(...);
panel.add(...);
...
frame.add(panel, BorderLayout.NORTH);

并且组件将与框架的骑行侧对齐。

另外,摆脱所有静态变量。这不是写课的方法。

阅读How to Use Flow Layout上Swing教程中的部分,了解更多信息和示例。如果没有所有静态的东西,你会告诉你更好的方法来构建你的课程。

答案 1 :(得分:0)

尝试

  pane = new JPanel();

取代

 pane = frame1.getContentPane();

并删除此行

pane.setLayout(null);   

最后将pane添加到JFrame

 frame1.getContentPane().add(pane);