0
は私がパネルを持っ例えばJOptionPane.showConfirmDialog
でOKボタンのタイトルを変更する方法はありますし、私はこの変更タイトルJOptionPane.showConfirmDialog
MyPanel pan = new MyPanel();
int result = JOptionPane.showConfirmDialog(null, venteFam,
"Title of the panel", JOptionPane.OK_CANCEL_OPTION);
このショーのようなJOptionPane.showConfirmDialog
の内側にそれを表示したいです私にこの:
だから私はOK を変更し、別のタイトルにタイトルをキャンセルすることで必要なもの、ということは可能ですか?
ありがとうございます。