如何设置未修饰的JTattoo使用JFrame

我已经尝试过了,但是没有用。

undecorated(true);



how to make frame undecorated after jTattoo theme installed这是一个相同的问题,不清楚的答案。
How to undecorate JFrame while using jtattoo这也是一样,没有答案。

最佳答案

在这里,我使用java的Property类制作了一些东西,不仅是未修饰的,而且还有窗口标题字体和其他类似的属性

Properties p = new Properties();
p.put("windowTitleFont", "Ebrima PLAIN 15");
p.put("logoString", "");
p.put("windowDecoration", "off");
HiFiLookAndFeel.setCurrentTheme(p);
UIManager.setLookAndFeel("com.jtattoo.plaf.hifi.HiFiLookAndFeel");

07-25 22:11