我想将图像设置为工具项。但是,我的程序不起作用,它只显示一个空窗口。
到目前为止我的代码:
import org.eclipse.swt.*;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.widgets.*;
public class test
{
public static void main(String [] args)
{
Display display = new Display( );
final Shell shell = new Shell(display);
shell.setSize(900, 200);
final ToolBar t=new ToolBar(shell,SWT.NONE);
Image image=new Image(display,"C:\\Users\\ART\\Documents\\Parsian\\bottum.jpg");
final ToolItem ti=new ToolItem(t,SWT.NONE);
ti.setImage(image);
ti.setText("test");
shell.open( );
while (!shell.isDisposed( ))
{
if (!display.readAndDispatch( ))
display.sleep( );
}
display.dispose( );
}
}