10 Mayıs 2012

JTattoo Look And Feels

Java swing uygulamalarımızın görünümleri hep aynı olmayacak artık. Swing Look And Feels kullanarak görünümleri değiştirebileceğiz.

/*main metodu içine bu kodları yazalım.*/
try {
   UIManager.setLookAndFeel("com.jtattoo.plaf.hifi.HiFiLookAndFeel");
} catch (ClassNotFoundException | InstantiationException
               | IllegalAccessException | UnsupportedLookAndFeelException e) {
   e.printStackTrace();
}


Şimdi farklı temaların ekran görüntüleriyle birlikte look and feel kodu verilmiştir. Bu kodları UIManager'ın setLookAndFeel metodunda tırnak içinde kullanıyoruz.

örnek: UIManager.setLookAndFeel("com.jtattoo.plaf.acryl.AcrylLookAndFeel");


  • com.jtattoo.plaf.acryl.AcrylLookAndFeel


  • com.jtattoo.plaf.aero.AeroLookAndFeel
  • com.jtattoo.plaf.aluminium.AluminiumLookAndFeel


  • com.jtattoo.plaf.bernstein.BernsteinLookAndFeel


  • com.jtattoo.plaf.fast.FastLookAndFeel


  • com.jtattoo.plaf.hifi.HiFiLookAndFeel


  • com.jtattoo.plaf.luna.LunaLookAndFeel 


  • com.jtattoo.plaf.mcwin.McWinLookAndFeel 


  • com.jtattoo.plaf.mint.MintLookAndFeel 


  • com.jtattoo.plaf.noire.NoireLookAndFeel


  • com.jtattoo.plaf.smart.SmartLookAndFeel

JTattoo Look And Feel'ini kendi sitesinden de indirebilirsiniz.
Burdan jar dosyasını veya source dizinini indirebilirsiniz.

Hiç yorum yok:

Yorum Gönder