第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

JTextFieldUI 在 JTabbedPane 的另一個(gè)選項(xiàng)卡中繪制,具有我個(gè)人的外觀和感覺

JTextFieldUI 在 JTabbedPane 的另一個(gè)選項(xiàng)卡中繪制,具有我個(gè)人的外觀和感覺

www說 2023-08-09 16:57:33
我正在開發(fā)新的外觀和感覺,現(xiàn)在在 JTabbledPane 組件中使用組件 JtextField 時(shí)遇到了一個(gè)錯(cuò)誤。我的 JTextFieldUI 有這段代碼,它擴(kuò)展了 BasicLookAndFell另外,這是我的最小可重現(xiàn)示例public class DemoLookAndFeel extends JFrame {? ? static {? ? ? ? try {? ? ? ? ? ? ?UIManager.setLookAndFeel(new MyLookAndFeel());? ? ? ? } catch (UnsupportedLookAndFeelException ex) {? ? ? ? }? ? }? ? public void init() {? ? ? ? JPanel panelOne = new JPanel();? ? ? ? panelOne.add(new JTextField("write inside me and change the tab"));? ? ? ? JPanel panelTwo = new JPanel();? ? ? ? //panelTwo.add(new Label("Now seee the JTextField?"));? ? ? ? JTabbedPane tabbedPane = new JTabbedPane();? ? ? ? tabbedPane.add("One", panelOne);? ? ? ? tabbedPane.add("Two", panelTwo);? ? ? ? this.setContentPane(tabbedPane);? ? ? ? this.setSize(800,800);? ? ? ? this.pack();? ? ? ? this.setLocationRelativeTo(null);? ? ? ? this.setVisible(true);? ? }? ? private static class MyLookAndFeel extends BasicLookAndFeel {? ? ? ? @Override? ? ? ? public String getName() {? ? ? ? ? ? return "my look and feel";? ? ? ? }? ? ? ? @Override? ? ? ? public String getID() {? ? ? ? ? ? return "qwerty";? ? ? ? }? ? ? ? @Override? ? ? ? public String getDescription() {? ? ? ? ? ? return "";? ? ? ? }? ? ? ? @Override? ? ? ? public boolean isNativeLookAndFeel() {? ? ? ? ? ? return false;? ? ? ? }? ? ? ? @Override? ? ? ? public boolean isSupportedLookAndFeel() {? ? ? ? ? ? return true;? ? ? ? }? ? ? ? @Override? ? ? ? protected void initClassDefaults(UIDefaults table) {? ? ? ? ? ? super.initClassDefaults(table);?? ? ? ? ? ? ? table.put("TextFieldUI", MyPersonalFieldUI.class.getCanonicalName());? ? ? ? }
查看完整描述

1 回答

?
梵蒂岡之花

TA貢獻(xiàn)1900條經(jīng)驗(yàn) 獲得超5個(gè)贊

問題在于你如何操縱繪畫。在changeColorOnFocus(由 調(diào)用FocusListener)方法內(nèi)部有以下幾行:


if (c.getGraphics() != null) {

? ? c.paint(c.getGraphics());

}

在這里,您使用圖形并在負(fù)責(zé)組件繪畫層次結(jié)構(gòu)中繪畫的方法之外進(jìn)行一種自定義繪畫。我希望我能更好地解釋它,但長話短說,Graphics只使用將它們作為參數(shù)提供給您的方法(并調(diào)用其super方法)。在UI類中方法是paintSafely,在組件中是paintComponent。它們都給你Graphics對象,因此它們適合定制繪畫。


因此,解決方案是在您的內(nèi)部FocusListener添加一個(gè)標(biāo)志,以便了解組件是否獲得焦點(diǎn),并調(diào)用changeColorOnFocus內(nèi)部paintSafely(Graphics g)方法。您的 UI 類應(yīng)該在以下部分中進(jìn)行更改(我不會(huì)全部粘貼,因?yàn)樗悬c(diǎn)大)。


private boolean focused; //a field

protected class FocusListenerColorLine implements FocusListener {


? ? @Override

? ? public void focusGained(FocusEvent e) {

? ? ? ? firePropertyChange(PROPERTY_LINE_COLOR, colorLineInactive, colorLineActive);

? ? ? ? focused = true;

? ? }


? ? @Override

? ? public void focusLost(FocusEvent e) {

? ? ? ? firePropertyChange(PROPERTY_LINE_COLOR, colorLineActive, colorLineInactive);

? ? ? ? focused = false;

? ? }

}




@Override

public void paintSafely(Graphics g) {

? ? super.paintSafely(g);

? ? paintLine(g);

? ? changeColorOnFocus(g);

}


protected void changeColorOnFocus(Graphics g) {

? ? boolean hasFocus = focused;

? ? JTextComponent c = getComponent();

? ? if (c == null) {

? ? ? ? return;

? ? }

? ? if (hasFocus && (activeBackground != null) && (activeForeground != null)) {

? ? ? ? logicForChangeColorOnFocus(c, activeBackground, activeForeground);

? ? ? ? //TODO create a new changePropriety

? ? ? ? paintLine(c.getGraphics());

? ? }


? ? if (!hasFocus && (inactiveBackground != null) && (inactiveForeground != null)) {

? ? ? ? logicForChangeColorOnFocus(c, inactiveBackground, inactiveForeground);

? ? ? ? paintLine(c.getGraphics());

? ? }

}


查看完整回答
反對 回復(fù) 2023-08-09
  • 1 回答
  • 0 關(guān)注
  • 112 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)