栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

在Windows任务栏上显示JDialog

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

在Windows任务栏上显示JDialog

对话框本身不能具有任务栏条目,但是您可以构造一个没有任何可见效果的框架,并将其用作对话框的父级。然后,该对话框看起来像具有任务栏条目。以下代码显示了如何执行此操作:

class MyDialog extends JDialog {    private static final List<Image> ICONS = Arrays.asList( new ImageIcon("icon_16.png").getImage(),  new ImageIcon("icon_32.png").getImage(), new ImageIcon("icon_64.png").getImage());    MyDialog() {        super(new Dummyframe("Name on task bar", ICONS));    }    public void setVisible(boolean visible) {        super.setVisible(visible);        if (!visible) { ((Dummyframe)getParent()).dispose();        }    }}class Dummyframe extends Jframe {    Dummyframe(String title, List<? extends Image> iconImages) {        super(title);        setUndecorated(true);        setVisible(true);        setLocationRelativeTo(null);        setIconImages(iconImages);    }}


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/497954.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号