JInternalFrame 添加图标到标题栏

发布于 2024-11-28 02:22:59 字数 125 浏览 1 评论 0原文

我想添加一个 ImageIcon 或类似于 JInternalFrame 的标题栏,这样 [x] 图标位于最东,可图标图标位于第二个最东的位置,自定义图标位于最东第三个位置。这可行吗?

I'd like to add an ImageIcon or comparable to a JInternalFrame's titlebar such that the [x] icon is east-most, the iconable icon is second east-most, and a custom icon is third east-most. Is this doable?

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

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

发布评论

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

评论(3

神魇的王 2024-12-05 02:22:59

这对我有用:

ImageIcon icon = new ImageIcon(ClassLoader.getSystemResource("Iconos/icono.png"));
this.setFrameIcon(icon);

This worked for me:

ImageIcon icon = new ImageIcon(ClassLoader.getSystemResource("Iconos/icono.png"));
this.setFrameIcon(icon);
七颜 2024-12-05 02:22:59
JInternalFrame jInternalFrame1 = new JInternalFrame("Test Internal Frame",false,false,false,false);

try {
  URL url = new URL("images/icon.gif");
  ImageIcon icon = new ImageIcon(url);
  jInternalFrame1.setFrameIcon(icon);
} 
catch (MalformedURLException ex) 
{
   //whatever you want to put here
}
JInternalFrame jInternalFrame1 = new JInternalFrame("Test Internal Frame",false,false,false,false);

try {
  URL url = new URL("images/icon.gif");
  ImageIcon icon = new ImageIcon(url);
  jInternalFrame1.setFrameIcon(icon);
} 
catch (MalformedURLException ex) 
{
   //whatever you want to put here
}
如若梦似彩虹 2024-12-05 02:22:59

获取父框架:
// 父级是容器 jDesktopPane ->父=新的JFrame()

this.setFrameIcon(new javax.swing.ImageIcon(this.parent.getIconImage()));

for obtain for parent frame :
// parent is container jDesktopPane -> parent = new JFrame ()

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