ViewPart显示为空白

时间:2012-09-03 09:06:07

标签: java eclipse eclipse-plugin swt eclipse-rcp

我有一个观点,这个视图已初始化,但什么时候可能完全空白。

由于我没有使用ViewParts,有什么明显的东西需要寻找?

我正在考虑相当于Java Swings。 setVisible(true)之类的东西。这是一个非常模糊的描述,但谷歌搜索并没有给我那么多信息,我正在与之合作的课程不是从头开始编写的。

提前致谢。

1 个答案:

答案 0 :(得分:1)

这只是代码尝试这个的开始。

import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.ui.part.ViewPart;
import org.eclipse.swt.widgets.Button;

public class test extends ViewPart {

    public test() {
        // TODO Auto-generated constructor stub
    }
    @Override
    public void createPartControl(Composite parent) {
        // TODO Auto-generated method stub
        Composite comParent = new Composite(parent, SWT.NONE);      
        Button button = new Button(comParent, SWT.NONE);
        button.setBounds(97, 97, 75, 25);
        button.setText("New Button");   
    }
    @Override
    public void setFocus() {
        // TODO Auto-generated method stub

    }
}