如何阻止cardlayout .next()和.previous()循环

如何阻止cardlayout .next()和.previous()循环,第1张

如何阻止cardlayout .next()和.previous()循环

“如果用户是在面板的开始或面板的末尾,有没有办法喜欢禁用按钮?”

根据如何使用CardLayout和CardLayout
API
,没有直接的方法可以做到这一点

但是您可以轻松实现此功能,使int变量与当前卡号保持一致,并再次检查其值ts 0(对于第一张卡)或容器的组件数(对于最后一张卡)。例如:

public class GridBagLayoutDemo { // note pre convention!    int currentCard = 0;    Action backAction, nextAction;    ...    public GridBagLayoutDemo() {        ...        backAction = new AbstractAction("< Back") { @Override public void actionPerformed(ActionEvent e) {     currentCard--;     GridBagLayoutDemo.this.evaluateActions(); }        };        nextAction = new AbstractAction("Next >") { @Override public void actionPerformed(ActionEvent e) {     currentCard++;     GridBagLayoutDemo.this.evaluateActions(); }        };        JButton btnBack = new JButton(backAction);        ...        JButton btnNext = new JButton(nextAction);        ...    }    private void evaluateActions() {        backAction.setEnabled(currentCard > 0);        nextAction.setEnabled(currentCard < container.getComponentCount() - 1);    }    ...}

附录

仔细研究

CardLayout
实现,默认情况下实现此功能真的很容易(除非我遗漏了一些东西):

public class CardLayout implements LayoutManager2,  Serializable {        Vector vector = new Vector();        int currentCard = 0;    ...        public boolean isDisplayingFirstCard() {        return currentCard == 0;    }    public boolean isDisplayingLastCard() {        return currentCard == vector.size() - 1;    }}

不知道为什么他们没有提供这种有用的功能。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5462230.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存