0

オブジェクトのコレクションがある場合:

public class Party {
    LinkedList<Guy> partyList = new LinkedList<Guy>();

    public void addGuy(Guy c) {
        partyList.add(c);
    }
}

そして tabbedPane:

public class CharWindow
{
private JFrame  frame;

/**
 * Launch the application.
 */
public static void main(String[] args)
{
    EventQueue.invokeLater(new Runnable()
    {
        @Override
        public void run()
        {
            try
            {
                CharWindow window = new CharWindow();
                window.frame.setVisible(true);
            }
            catch (Exception e)
            {
                e.printStackTrace();
            }
        }
    });
}

/**
 * Create the application.
 */
public CharWindow()
{
    initialize();
}

/**
 * Initialize the contents of the frame.
 */
private void initialize()
{
    frame = new JFrame();
    frame.setBounds(100, 100, 727, 549);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    JTabbedPane tabbedPane = new JTabbedPane(SwingConstants.TOP);
    frame.getContentPane().add(tabbedPane, BorderLayout.CENTER);

    JTabbedPane PartyScreen = new JTabbedPane(SwingConstants.TOP);
    tabbedPane.addTab("Party Screen", null, PartyScreen, null);

    JTabbedPane tabbedPane_2 = new JTabbedPane(SwingConstants.TOP);
    tabbedPane.addTab("New tab", null, tabbedPane_2, null);

    JTabbedPane tabbedPane_3 = new JTabbedPane(SwingConstants.TOP);
    tabbedPane.addTab("New tab", null, tabbedPane_3, null);
}
}

LinkedList の各項目に対して JLabel の「名前」と垂直方向の JSeparator を表示するように、tabbedPane の「Party Screen」にコンテンツを追加するにはどうすればよいですか?

4

1 に答える 1

1

まず、JTabbedPane は、要素パネルごとに新しいタブを作成するウィジェットです。タブ付きインターフェースの子ではありません。(例: JTabbedPane は、partyScreen という JPanel を保持する必要があります。)

JTabbedPane tabbedPanel = new JTabbedPane(); // holds all tabs

// this is how you add a tab:
JPanel somePanel = new JPanel();
tabbedPanel.addtab("Some Tab", somePanel);

// this is how you'd add your party screen
JPanel partyScreen = new JPanel();
tabbedPanel.addTab("Party Screen", partyScreen);

Java 命名規則には、小文字で始まる変数があることを思い出してください。そのため、partyScreen は PartyScreen よりも優先されます。

次に、各Guyオブジェクトを繰り返し処理しParty、適切なコンポーネントを追加します。LinkedListの代わりに aを使用しているList理由はわかりませんが、上記のコードに含まれていない正当な理由があると思います。

// myParty is an instance of Party; I assume you have some sort of accessor to 
// the partyList
LinkedList<Guy> partyList = myParty.getPartyList();
ListIterator<Guy> it = partyList.listIterator();
while( it.hasNext() ) {
    Guy g = it.next();
    partyScreen.add(new JLabel( g.getName() ));
    partyScreen.add(new JSeparator() );
}

パネルにどのように配置したいかによっては、おそらくLayout ManagerpartyScreenを調べる必要があります。

于 2012-06-14T20:39:23.940 に答える