所以我的問題是,我曾與Jspinners有過。是我用一個標題邊框圍繞我的jspinner嗎?然而在gui中,由於js較小,所以裁減標題文本。那麼我怎麼能夠根據標題的長度強制gui進行rezise,或者我怎樣才能讓jspinner更長時間地爲我提供足夠的空間來適應整個標題?jspinner標題爲邊界被切斷
JTextField name= new JTextField(9);
name.setBorder(new TitledBorder("Name"));
//setup spinner date format
SimpleDateFormat datePattern = new SimpleDateFormat("MM/dd/yyyy");
JSpinner dob = new JSpinner(new SpinnerDateModel());
dob.setEditor(new JSpinner.DateEditor(dob, datePattern.toPattern()));
dob.setBorder(new TitledBorder("Date of Birth"));
JPanel childPanel = new JPanel();
childPanel.setLayout(new FlowLayout());
childPanel.add(name);
childPanel.add(dob);
childPanel.setBorder(new TitledBorder("Child Info"));
然後:
JPanel mainPanel = new JPanel();
mainPanel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
mainPanel.add(childPanel);
childPanel.setAlignmentX(Component.LEFT_ALIGNMENT);
//there are more items in this panel, just omitted them, that's why using BoxLayout
我遇到的時候JSpinner的的TitledBorder甚至超過這個例子之前這個問題。我也試過.setMaximumSize(object.getPreferredSize());在微調器,childPanel和mainPanel上。似乎也沒有解決這個問題。 – whitewolfpgh
一個')'也許還可以利用Nimbus的外觀和感覺,而不是用XxxBorders困擾,'B)'我建議,只有在你將永遠爲背景或前景設置的情況下,通知應如此艱難和棘手爲Nimbus L&F設置這兩個值 – mKorbel
1)爲了更快地獲得更好的幫助,請發佈[SSCCE](http://sscce.org/)。 2)Swing的一位大師詛咒'TitledBorder' - 它有怪癖和問題。 –