4

ボタンを縦に表現したいのですが、コードは次のとおりです。

これらは私のボタンのラベルコードです:

String[] choices = {"31", "63", "127", "255", "511", "1023", "2047", " ... or Quit"};

ダイアログボックスのオプションは次のとおりです。

while (true) {
        int response = JOptionPane.showOptionDialog(
                           null                      
                         , "Please select the sequence-length you want ...\n"   
                         , "Gold Code generator"      
                         , JOptionPane.YES_NO_OPTION  
                         , JOptionPane.PLAIN_MESSAGE  
                         , null                      
                         , choices                  
                         , "None of your business"    
                       );

だから...それは一般的な水平方向の方法ではなく垂直方向の方法で表すことができますか?

4

1 に答える 1

2

JOptionPaneには、ボタンの垂直方向のオプションはありません。これを行うには、JDialogをサブクラス化して独自のダイアログを作成する必要があります。

于 2013-03-25T13:43:36.017 に答える