Hi
Bei mir klappt es nicht, dass Das Aussehen auf MetalLookAndFeel umgestellt wird.
Was genau mache ich falsch?
Bei mir klappt es nicht, dass Das Aussehen auf MetalLookAndFeel umgestellt wird.
Code:
// ...... importiert wird alles Nötige...
public class Test extends JFrame //implements ActionListener
{
public Test()
{
try {
String metal = new String("javax.swing.plaf.metal.MetalLookAndFeel");
UIManager.setLookAndFeel(metal);
SwingUtilities.updateComponentTreeUI(this);
}
catch (ClassNotFoundException e) {}
catch (UnsupportedLookAndFeelException e) {}
catch (InstantiationException e) {}
catch (IllegalAccessException e) {}*/
// .............. hier fehlt noch etwas :D
public static void main (String[] args)
{
Test frame = new Test();
frame.setLocation(100,100);
frame.setSize(800,600);
frame.setVisible(true);
frame.setTitle("Only Testing");
}
}
Was genau mache ich falsch?