如何在Java中隐藏面板

发布于 2024-12-12 08:03:24 字数 161 浏览 3 评论 0原文

我正在开发一个java问卷应用程序,有一个问题: 例如,有两个主题,第一个主题有一个子题,所有题都是单选题。假设我点击第一个主要问题的一个选项,它的子问题应该被触发并显示在第一个主要问题和第二个问题之间。如果我再次单击该选项,子问题应该会消失。 如何使问题面板动画显示和隐藏?能简单介绍一下基本方法吗?谢谢。

I am working on a java questionnaire app, and there is one problem:
for example, there is two main questions, and the first main question has a subquestion, all the questions are sigle choice. Assuming that I click on one choice of the first main question, its subquestion should be triggered out and displayed between the first main question and the second question. If I click on the choice again, the subquestion should be disappeared.
How can I make the question panels show and hide animately? Can you just tell me the basic methods? Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时间海 2024-12-19 08:03:24

下面是一些关于在 java 中以可视方式隐藏某些内容的示例的基本代码。

public static void main(String args[]){
JFrame f = new JFrame();
f.setLayout(new BorderLayout());
final JPanel p = new JPanel();
p.add(new JLabel("A Panel"));
f.add(p, BorderLayout.CENTER);

//create a button which will hide the panel when clicked.
JButton b = new JButton("HIDE");
b.addActionListener(new ActionListener(){
    public void actionPerformed(ActionEvent e){
            p.setVisible(false);
    }
});

Here is some basic code on an example of hiding something visually in java.

public static void main(String args[]){
JFrame f = new JFrame();
f.setLayout(new BorderLayout());
final JPanel p = new JPanel();
p.add(new JLabel("A Panel"));
f.add(p, BorderLayout.CENTER);

//create a button which will hide the panel when clicked.
JButton b = new JButton("HIDE");
b.addActionListener(new ActionListener(){
    public void actionPerformed(ActionEvent e){
            p.setVisible(false);
    }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文