如何顯示JProgressBar
中的文字?即「000/100」帶值的JProgress Bar
progPanel.setBorder(BorderFactory. createEmptyBorder(10,10,10,10));
timerBar = new JProgressBar(0,100);
timerBar.setOrientation(JProgressBar.VERTICAL);
timerBarLabel = new JLabel("Play");
timerBarLabel.setForeground(Color.white);
progPanel.add(timerBarLabel);
progPanel.add(timerBar);
這是我的進度條代碼。
你說「JProgressBar'內的文本,但你只是想看看價值,還是你想創建一個字符串」000/100「? – Whymarrh
誰在JProgressBar中獲得文本?這聽起來像是指另一個問題或答案。沒有人知道您指的是哪個帖子。但是,請在此處包含有關此問題的完整說明,而不僅僅是鏈接到其他帖子。問題應該是自成體系的。 –