您好我有以下对话框
Object[] options = {"10 MINS: " + Utility.NF.format(price1),
"30 MINS: " + Utility.NF.format(price2),
"1 HOUR: " + Utility.NF.format(price3),
"ALL DAY: " + Utility.NF.format(price4)
};
int n = JOptionPane.showOptionDialog(new JFrame(),
"Please select the credit you wish to add \n WARNING: CREDIT CAN NOT BE REFUNDED",
"Credit selection",
JOptionPane.YES_NO_OPTION,
JOptionPane.WARNING_MESSAGE,
null, //do not use a custom Icon
options, //the titles of buttons
options[0]); //default button title
return n;
我的问题是,有没有办法在我的自定义对话框中添加是否确认。
例如,如果用户在我的自定义对话框中选择“10分钟...”,则会弹出另一个简单的“是/否”确认对话框。
我已经搜索了其他问题,但没有找到在自定义对话框中会出现是/否对话框的地方。
干杯,