swing 中的工具栏问题 +爪哇

发布于 2024-10-24 12:50:50 字数 666 浏览 0 评论 0原文

我的文件中有这段代码,

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

我有两个问题。

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

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

I have this code in my file

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

I have 2 questions in this.

Firstly the image file that is represented by the icon does not get resized on its own and thus gets cut by the button size.

Secondly the toolbar gets shown in the window but I am able to drag it out into a sort of a new window. How can I prevent this from happening?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

锦欢 2024-10-31 12:50:50

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

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

B)可以将 JToolBar 设为不可浮动,这就是我认为您想要的:

toolBar.setFloatable(false);

A) The image in the icon can be rescaled using the following code:

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

B) The JToolBar can be made unfloatable which is what I think you want:

toolBar.setFloatable(false);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文