*RELEASE* average-exp-gain calculator
" Thanks for your work btw. I'll give it a more thorough look here tonight and actually give it a try. If you need help with anything ( I know another pair of eyes is always good for these kinds of projects ), I'd be more than happy to help. |
![]() |
I don't know if you know this,
if you run this code before you make JFrame and other panels then it shows your UI in windows style instead of the (imo ugly) java style.
Spoiler
String laf = UIManager.getSystemLookAndFeelClassName(); try { UIManager.setLookAndFeel(laf); } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException e1) { // TODO Auto-generated catch block e1.printStackTrace(); } Edit: imports you probably need
Spoiler
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException; Last edited by Sisaroth#5793 on Apr 30, 2013, 3:21:17 PM
|
![]() |
" In fact, I didn't. Thanks :) " I would be more than happy to let more people work on it, just message me, i'd like to get to know people beforehand :) Last edited by HansV2#1916 on May 1, 2013, 6:18:59 AM
|
![]() |