Create a Confirm Dialog Box : OptionPane « Swing JFC « Java
- Java
- Swing JFC
- OptionPane
Create a Confirm Dialog Box
import javax.swing.JOptionPane;
public class Main {
public static void main(String[] argv) throws Exception {
int response = JOptionPane.showConfirmDialog(null, "Should i delete all files?");
}
}
Related examples in the same category