我试图为国际象棋游戏创建一个gui并且可以使用一些帮助 我设置了两个面板:左面板和右面板(主面板上的两个座位)。左侧面板将包含棋盘本身,右侧面板将包含更多小部件 问题是,我只能让右侧面板位于窗口的右侧。
所以首先给你一些更多的背景,这里是我想要的样子:
以及它的外观:
我尝试使用FormLayout()对象设置主面板(同时包含左侧和右侧面板的面板),然后设置:
FormData form_data=new FormData();
form_data.left=new FormAttachment(left_panel);
right_panel.setLayoutData(form_data);
但是没有做任何事情。
以下是相关代码:
shell=new Shell(display,SWT.DIALOG_TRIM);
shell.setText("Chess");
/*********************
* setting main panel
*********************/
Composite main_panel=new Composite(shell, SWT.NONE);
main_panel.setBackgroundImage(background); //size of this image is 800x650, which means it should encompass the left and right panels exactly
main_panel.setBackgroundMode(SWT.INHERIT_DEFAULT);
main_panel.setBounds(background.getBounds());
main_panel.setLayout(new GridLayout(2,false);
/*********************
* setting left panel
*********************/
left_panel=new Composite(main_panel, SWT.NONE);
GridData data=new GridData(SWT.FILL, SWT.FILL, false, true);
data.widthHint = 650;
left_panel.setLayoutData(data);
board_panel=new Composite(left_panel,SWT.NONE);
board_panel.setBackgroundImage(game_board); //size of this image is 520x520
board_panel.setLocation(65, 65); //board size is 520x520, so this centralizes it in left panel
/*********************
* setting right panel
*********************/
right_panel=new Composite(main_panel, SWT.NONE);
right_panel.setBackgroundImage(panel); //size of this image is 150x650
right_panel.setLayoutData(new GridData(SWT.END, SWT.FILL, true, true));
shell.pack();
顺便说一句,如果我没有特别的东西,我应该将复合材料设置为什么样的风格?
(你可以看到我把它设置为SWT.NO_RADIO_GROUP,因为我不知道该放什么......)
任何帮助都会非常感激。
**代码已编辑
答案 0 :(得分:4)
除非绝对必要,否则永远不要使用setBounds
。请改用Layout
。
Here是关于布局的优秀教程。
以下是一些示例代码,可以为您提供一个起点:
public static void main(String[] args)
{
final Display display = new Display();
Shell shell = new Shell(display);
shell.setText("StackOverflow");
shell.setLayout(new GridLayout(2, false));
Composite chessBoard = new Composite(shell, SWT.BORDER);
chessBoard.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
Composite settings = new Composite(shell, SWT.BORDER);
GridData data = new GridData(SWT.END, SWT.FILL, false, true);
data.widthHint = 100;
settings.setLayoutData(data);
shell.pack();
shell.open();
shell.setSize(400, 200);
while (!shell.isDisposed())
{
if (!display.readAndDispatch())
display.sleep();
}
}
看起来像这样: