我正在开发一个eclipse插件,我想显示标签和进度条。但是不幸的是,我无法更改它们的大小。无论我在label和progressBar的setBounds属性中提到的大小如何,坐标为:Rectangle {3,3 ,70、15}和矩形{3、21、170、17}

以下是我的处理程序代码:

private ProgressBar progressBar;
@Override
public Object execute(ExecutionEvent event) throws ExecutionException {

        Display display = Display.getDefault();

        Shell p_shell = new Shell(display,SWT.DIALOG_TRIM);

        p_shell.setText("Translating..");

        p_shell.setLayout(new RowLayout(SWT.VERTICAL));

        p_shell.setSize(250, 70);

        Label label = new Label(p_shell, SWT.NONE);

        label.setBounds(10, 20, 180, 20);
        //LINE 101 gives Rectangle {3, 3, 70, 15}

        label.setText("Please wait ...");

        progressBar = new ProgressBar(p_shell, SWT.SMOOTH);

        //progressBar.setBounds(10, 50, 200, 20);
        //LINE 100 gives Rectangle {3, 21, 170, 17}

        progressBar.setBounds(new Rectangle(5, 30, 150, 10));
        //LINE 100 gives Rectangle {3, 21, 170, 17}

        progressBar.setMinimum(30);

        progressBar.setMaximum(100);

        p_shell.open();

        System.out.println("progress bar  ==> " + progressBar.getBounds());//LINE 100

        System.out.println("label ==> " + label.getBounds());//LINE 101


        while(!p_shell.isDisposed()){

            if(!display.readAndDispatch()){
                display.sleep();
            }
        }
        }


我无法继续进行。任何帮助将不胜感激。

最佳答案

您不能将Layout与setBounds混合使用-布局会覆盖边界。如果删除setLayout,边界将起作用。

但是,使用setBounds可能会在不同的屏幕上给您带来问题,因此您应该尝试使用没有setBounds的布局来使此工作生效。

还要注意,Eclipse向导,Jobs等已经提供了标准进度指示器。

09-11 18:47