Tagged Questions
The titled-border tag has no wiki summary.
4
votes
1answer
152 views
Delayed TitledBorder title update/refresh, why?
I have a JPanel A with a title border inside a JPanel B of a JTabbedPanel C. I have a method refreshing the content of A and B which is called from time-to-time.
Unfortunately, all the items of A and ...
2
votes
2answers
349 views
Java Swing: adding button to TitledBorder
I have a list of TitledBorder panels that contain textfields that represents point.
I've just been asked to add a button to the panel with the TitledBorder, that will alow me delete the panel and its ...
2
votes
2answers
348 views
Is it possible to set a TitledBorder opaque on Swing?
Is it somehow possible on Swing to set a TitledBorder transparent so that a background image shines through?
1
vote
3answers
2k views
Java L&F customization: How do I use synth to customize BorderFactory borders?
Specifically, I currently have a JPanel with a TitledBorder. I want to customize the look of the border. In my app's current state, the title is drawn, but not the line border itself.
If I bind an ...
0
votes
2answers
73 views
Removing the spacing around a TitledBorder
A javax.swing.border.TitledBorder introduces a spacing of 2 pixels around the edges of the border. This is quite annoying because it breaks the alignment with the components around.
How do you remove ...
0
votes
1answer
350 views
Title truncation in JPanel TitledBorder - Java swing
I've got a JPanel with a TitledBorder, but the contents of the panel are narrower than the title in the border and the title gets truncated.
I am using BoxLayout for the JPanel which as depicted here ...
0
votes
1answer
113 views
Title collapse in TitledBorder
I've a TitledBorder having title larger than the body.
Its get cut down and the length sets as per the maximum length of the body.
Suppose I have a label in the body saying TEST and its enclosed by ...