How to create an interface which shows the objects in left side and detail for each object in the right side?

StackOverflow https://stackoverflow.com/questions/12472390

質問

I'm not sure which container or component can help to create the following menu bar. I already created the menu bar and status bar at the bottom. But I have no idea which interface is the best.

enter image description here

I apprecite any help,

役に立ちましたか?

解決

他のヒント

The core content (the part in the middle) is using currently using a JSplitPane

You can get similar look using a BorderLayout (on something like) a JPanel. You'd place the index in a JScrollPane down the WEST side of the container and the Details pane in the CENTER

You might also find a CardLayout useful you need to switch panes from the content area

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top