Forums Register Login

Customise JOptionPane

+Pie Number of slices to send: Send
I ned a confirm optionpane with white backgraoud ,black text with Monospaced font . But my attempts to customize the option pane never goes through .
Why ?
Is there a way I can achieve this ?
---------------------------------------------
My code
public int onWindowClose(){
message="Do you want to Exit Dictionary Admin ?";
messageType=JOptionPane.QUESTION_MESSAGE;
optionType=JOptionPane.YES_NO_OPTION;
title = " Test ";
Object [] options ={"Yes" ,"No" };
Object initialValue = "Yes";
Icon icon = null;
chosen = getOptionPane().showConfirmDialog(mainFrame, message, title,optionType,messageType, icon);
return chosen;
}
private JOptionPane getOptionPane(){
JOptionPane optionPane = new JOptionPane();
optionPane.setBackground(Color.white);
optionPane.setForeground(Color.black);
optionPane.setFont(new Font("Monospaced", Font.PLAIN,10));
return optionPane;

}
Curse your sudden but inevitable betrayal! And this tiny ad too!
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com


reply
reply
This thread has been viewed 1474 times.
Similar Threads
Returning a value from a pop-up window
How to make a dialog to keep in English
JOptionPane Customisation
Question about JOptionPane
Custom Dialog - please help
More...

All times above are in ranch (not your local) time.
The current ranch time is
Mar 28, 2024 23:46:43.