chenhai
chenhai

Reputation: 35

JTabbedPane's tab area add a button, it can display, but it can't click

I have a JTabbedPane with tabs on the top. To the right of the tabs, I add a button. This button is neither part of JTabbedPane nor is it a tab. Unfortunately, it cannot be clicked. I guess this button is covered by the JTabbedPane, because I moved the button down, it covered by the JTabbedPane.

Can anybody give me some suggestion, so that I can click that button?

This is the layout; I can't upload image, so I draw it like below:

|-------------------------------------|
|   tab   |  tab   |           button |
|-------------------------------------|
|                                     |
|               content               |
|                                     |
|-------------------------------------|

Upvotes: 1

Views: 961

Answers (1)

trashgod
trashgod

Reputation: 205785

I haven't tried it, but you may be able to leverage one of approaches adduced by @camickr in the article Component Border. A custom TabbedPaneUI is a (laborious) alternative.

Upvotes: 1

Related Questions