synthetica

Why doesn't my JFrame repaint when I set a new Synthetica theme?

守給你的承諾、 提交于 2019-12-04 05:03:13
问题 I just set my applications theme to Synthetica Alu Oxide but some reason the JFrame doesn't repaint but another Synthetica theme will repaint the JFrame. This is what mine looks like. http://i.imgur.com/SOBDTs4.png This is what its suppose to look like. http://www.jyloo.com/images/screenshots/syntheticaAluOxide/democenter2.png public MainPanel() { JFrame frame = new JFrame(); frame.setTitle("Asteria 3.0 NPC Definition Editor"); try { UIManager.setLookAndFeel(new SyntheticaAluOxideLookAndFeel(

Java- Can't apply Java Look and Feel

我只是一个虾纸丫 提交于 2019-12-02 13:30:07
问题 I'm using Synthetica Look and Feel in my application and it works fine on Eclipse. But when i export the Jar file and execute it i got these errors : Exception in thread "AWT-EventQueue-0" java.lang.NoClassDefFoundError: sun/swing/plaf/synth/SynthUI at de.javasoft.plaf.synthetica.SyntheticaDefaultLookup.getDefault(SyntheticaDefaultLookup.java:105) at sun.swing.DefaultLookup.get(Unknown Source) at javax.swing.plaf.basic.BasicButtonListener.getInputMap(Unknown Source) at javax.swing.plaf.basic

Java- Can't apply Java Look and Feel

本秂侑毒 提交于 2019-12-02 05:18:18
I'm using Synthetica Look and Feel in my application and it works fine on Eclipse. But when i export the Jar file and execute it i got these errors : Exception in thread "AWT-EventQueue-0" java.lang.NoClassDefFoundError: sun/swing/plaf/synth/SynthUI at de.javasoft.plaf.synthetica.SyntheticaDefaultLookup.getDefault(SyntheticaDefaultLookup.java:105) at sun.swing.DefaultLookup.get(Unknown Source) at javax.swing.plaf.basic.BasicButtonListener.getInputMap(Unknown Source) at javax.swing.plaf.basic.BasicButtonListener.installKeyboardActions(Unknown Source) at javax.swing.plaf.basic.BasicButtonUI

Can't access synthetica themes on new netbeans 7.4 with latest JDK (1.7.0_45)

眉间皱痕 提交于 2019-11-30 09:43:02
问题 Today i was update my Netbeans 6.8 to new Netbeans 7.4 and JDK 1.7.0 to 1.7.0_45 When i open my previous project on new Netbeans version sysnthetica look and feel is not working :( other everything is working perfectly :) try { UIManager.setLookAndFeel(new SyntheticaBlackStarLookAndFeel()); new frm_login().setVisible(true); } catch (Exception e) { e.printStackTrace(); } this is the error : Exception in thread "main" java.lang.NoClassDefFoundError: sun/swing/plaf/synth/SynthUI at de.javasoft