JFrame 与 JTabbedPane & J按钮

发布于 2024-10-04 14:35:57 字数 397 浏览 3 评论 0原文

我声明了一个 Jframe 并向其添加了 JTabbedPane 。

有 4 个 tabbedPane,每个 tabbedPane 都有一个表格内容。

现在,我需要为每个选项卡添加一个刷新按钮,我该怎么做?

这就是我正在做的:

frmSql = new JFrame();
JTabbedPane tabbedPane = new JTabbedPane();
tabbedPane.addTab("Events", retrieveData("events"));

tabbedPane.addTab("Completed Events", retrieveData("completed"));
frmSql.add(tabbedPane);

有什么建议吗?

I have a Jframe declared and adda JTabbedPane to it.

There are 4 tabbedPane and each has a table content.

Now, I need to add a refresh button to each tab, how can I do this?

This is how I'm doing:

frmSql = new JFrame();
JTabbedPane tabbedPane = new JTabbedPane();
tabbedPane.addTab("Events", retrieveData("events"));

tabbedPane.addTab("Completed Events", retrieveData("completed"));
frmSql.add(tabbedPane);

Any suggestions?

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

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

发布评论

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

评论(1

笙痞 2024-10-11 14:35:57
static void createAndShowGui() {
    JFrame frmSql = new JFrame();
    JTabbedPane tabbedPane = new JTabbedPane();
    Action refreshEvents = null, refreshCompletedEvents = null;
    tabbedPane.addTab("Events", createTab(retrieveData("events"), refreshEvents));
    // more tabs
    tabbedPane.addTab("Completed Events", createTab(retrieveData("completed"), refreshCompletedEvents));
    frmSql.setContentPane(tabbedPane);

}

static JComponent createTab(JComponent content, Action refreshAction) {
    JPanel p = new JPanel(new BorderLayout());
    p.add(content, BorderLayout.CENTER);
    JPanel btns = new JPanel();
    BoxLayout layout = new BoxLayout(btns, BoxLayout.LINE_AXIS);
    btns.setLayout(layout);
    JButton refreshBtn = new JButton(refreshAction);
    btns.add(refreshBtn);
    btns.add(Box.createHorizontalGlue());
    p.add(btns, BorderLayout.PAGE_END);
    return p;
}

当然,如果 retriveData 很耗时,则不应从 EDT 调用它

static void createAndShowGui() {
    JFrame frmSql = new JFrame();
    JTabbedPane tabbedPane = new JTabbedPane();
    Action refreshEvents = null, refreshCompletedEvents = null;
    tabbedPane.addTab("Events", createTab(retrieveData("events"), refreshEvents));
    // more tabs
    tabbedPane.addTab("Completed Events", createTab(retrieveData("completed"), refreshCompletedEvents));
    frmSql.setContentPane(tabbedPane);

}

static JComponent createTab(JComponent content, Action refreshAction) {
    JPanel p = new JPanel(new BorderLayout());
    p.add(content, BorderLayout.CENTER);
    JPanel btns = new JPanel();
    BoxLayout layout = new BoxLayout(btns, BoxLayout.LINE_AXIS);
    btns.setLayout(layout);
    JButton refreshBtn = new JButton(refreshAction);
    btns.add(refreshBtn);
    btns.add(Box.createHorizontalGlue());
    p.add(btns, BorderLayout.PAGE_END);
    return p;
}

Of course, if retriveData is time-consuming, it shouldn't be called from EDT

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文