![]() |
|
Screenshot of my new java app ! vote it - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Java, JVM, & JRE (https://sinister.ly/Forum-Java-JVM-JRE) +--- Thread: Screenshot of my new java app ! vote it (/Thread-Screenshot-of-my-new-java-app-vote-it) |
Screenshot of my new java app ! vote it - virusreloaded - 05-03-2013 Here's the Screenshot of my new Java Application - Immortal SysCleaner v0.0.1 Spoiler:![]() RE: Screenshot of my new java app ! vote it - Deque - 05-03-2013 Nice work so far. The Metal look and feel of Java looks ugly (visible by your buttons and selection box). I suggest you try something like Nimbus and change it to your needs. Example code of my program (here with a black-blue theme): Code: private static void setLookAndFeelBlue() {
UIManager.put("nimbusBase", new Color(0, 0, 15));
UIManager.put("nimbusBlueGrey", new Color(0, 0, 220));
UIManager.put("control", Color.black);
UIManager.put("text", Color.white);
UIManager.put("nimbusSelectionBackground", Color.gray);
UIManager.put("nimbusSelectedText", Color.white);
UIManager.put("textHighlight", Color.lightGray);
UIManager.put("nimbusFocus", new Color(20, 120, 250));
UIManager.put("nimbusSelection", new Color(0, 0, 220));
UIManager.put("textBackground", Color.black);
UIManager.put("nimbusLightBackground", Color.black);
for (LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
try {
UIManager.setLookAndFeel(info.getClassName());
} catch (Exception e) {
System.err.println(e.getMessage());
}
break;
}
}
}Tutorial: http://docs.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html RE: Screenshot of my new java app ! vote it - Deque - 05-03-2013 Nice work so far. The Metal look and feel of Java looks ugly (visible by your buttons and selection box). I suggest you try something like Nimbus and change it to your needs. Example code of my program (here with a black-blue theme): Code: private static void setLookAndFeelBlue() {
UIManager.put("nimbusBase", new Color(0, 0, 15));
UIManager.put("nimbusBlueGrey", new Color(0, 0, 220));
UIManager.put("control", Color.black);
UIManager.put("text", Color.white);
UIManager.put("nimbusSelectionBackground", Color.gray);
UIManager.put("nimbusSelectedText", Color.white);
UIManager.put("textHighlight", Color.lightGray);
UIManager.put("nimbusFocus", new Color(20, 120, 250));
UIManager.put("nimbusSelection", new Color(0, 0, 220));
UIManager.put("textBackground", Color.black);
UIManager.put("nimbusLightBackground", Color.black);
for (LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
try {
UIManager.setLookAndFeel(info.getClassName());
} catch (Exception e) {
System.err.println(e.getMessage());
}
break;
}
}
}Tutorial: http://docs.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html RE: Screenshot of my new java app ! vote it - virusreloaded - 05-03-2013 Thanx for your advice Deque .... I am working on it, I too hate that default look of buttons in java. Will soon post a new Image very soon
RE: Screenshot of my new java app ! vote it - virusreloaded - 05-03-2013 Thanx for your advice Deque .... I am working on it, I too hate that default look of buttons in java. Will soon post a new Image very soon
RE: Screenshot of my new java app ! vote it - darthjames226 - 11-26-2013 Nice app idea. Like Deque said, use nimbus. Did you finish working on this project yet? I would like to see the results if you have. RE: Screenshot of my new java app ! vote it - darthjames226 - 11-26-2013 Nice app idea. Like Deque said, use nimbus. Did you finish working on this project yet? I would like to see the results if you have. |