How can I apply raised bevel border to selected tab in java JTabbedPane?
Asked
Active
Viewed 47 times
0

James Z
- 12,209
- 10
- 24
- 44

Rohit Borse
- 75
- 1
- 10
-
1I suspect what you really want is a native look-and-feel. Place `try { UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); } catch (UnsupportedLookAndFeelException | ReflectiveOperationException e) { throw new RuntimeException(e); }` at the start of your program, before any Swing components are created. – VGR Nov 26 '17 at 05:56
-
Yes, correct. Also I want to remove that unwanted blue border between tab and its content pane. How we can do this. – Rohit Borse Nov 26 '17 at 09:53