swing + java中的ToolBar问题

时间:2011-03-20 10:48:58

标签: java swing jtoolbar

我在我的档案中有这段代码

String[] iconFiles = { "state.jpg", "cursor.jpg", "arrow.jpg" };
String[] buttonLabels = { "New Node", "Attribute Change", "Add Edge"};
for (int i = 0; i < buttonLabels.length; ++i) {
        icons[i] = new ImageIcon(iconFiles[i]);
        buttons[i] = new JButton(icons[i]);
        buttons[i].setToolTipText(buttonLabels[i]);
        buttons[i].setPreferredSize(new java.awt.Dimension(648, 600));
        toolBar.add(buttons[i]);
        toolBar.addSeparator();
}
jp2.add(toolBar) where jp2 is a Tabbed Pane

我有两个问题。

首先,由图标表示的图像文件不会自行调整大小,因此会被按钮大小剪切。

其次,工具栏会显示在窗口中,但我可以将其拖动到某个新窗口中。我怎样才能防止这种情况发生?

1 个答案:

答案 0 :(得分:6)

A)图标中的图像可以使用以下代码重新缩放:

icons[i].setImage(icons[i].getImage().getScaledInstance(width, height, Image.SCALE_DEFAULT));

B)JToolBar可以不可爱,这是我认为你想要的:

toolBar.setFloatable(false);