ตัวอย่างโค้ด Java GUI การสร้าง Select โดยใช้ JOptionPane
ตัวอย่างนี้เป็นตัวอย่างโค้ด Java GUI ตัวอย่างโค้ดการสร้าง Select โดยใช้ JOptionPane ซึ่งจะเรียก method showInputDialogตัวอย่างโค้ด
import javax.swing.JFrame;import javax.swing.JOptionPane;
public class JavaCodeExam {
public static void main(String[] args) throws Exception {
JFrame frame = new JFrame();
Object[] possibilities = { "Red", "White", "Green" };
String s = (String)JOptionPane.showInputDialog(frame,
"Select Color:\n" + "\"You like Color...\"",
"Color", JOptionPane.PLAIN_MESSAGE, null,
possibilities, possibilities[1]);
System.out.println(s);
}
}
ตัวอย่างนี้ จะสร้าง Array ที่เป็น Object ไว้ก่อน จากนั้น จะเรียกใช้ JOptionPane แล้วเรียกใช้ showDialog ใส่ JFrame เข้าไป จากนั้นใส่ค่าที่แสดง แล้วก็ใส่ title จากนั้นก็ใส่ message Type แล้วก็ใส่ ICON จากนั้นใส่ค่า Option ที่ได้สร้างไว้ แล้วก็ใส่ค่าเริ่มต้นให้กับ Select
ไม่มีความคิดเห็น :
แสดงความคิดเห็น