ボタンを縦に表現したいのですが、コードは次のとおりです。
これらは私のボタンのラベルコードです:
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"
);
だから...それは一般的な水平方向の方法ではなく垂直方向の方法で表すことができますか?