วันจันทร์ที่ 17 กุมภาพันธ์ พ.ศ. 2557

ตัวอย่างการใช้ showOptionDialog ใน JOptionPane

ตัวอย่างการใช้ showOptionDialog ใน JOptionPane

ตัวอย่างนี้เป็นตัวอย่างการใช้ JOptionPane ซึ่งใช้สำหรับแสดง Dialog ซึ่งเป็นแบบ Option ให้เลือก

ตัวอย่างโค้ด

import javax.swing.JFrame;
import javax.swing.JOptionPane;

public class JavaCodeExam {
public static void main(String[] args) throws Exception {
JFrame frame = new JFrame();
// Custom button text
Object[] options = {"Yes", "No", "I dont Know"};
int n = JOptionPane.showOptionDialog(frame, "are you human?", "Question",
JOptionPane.YES_NO_CANCEL_OPTION,
JOptionPane.QUESTION_MESSAGE, null, options, options[0]);

System.out.println(options[n]);
}
}

จากตัวอย่างการสร้าง Array ที่เป็นชนิด Object แล้วใส่ค่า Option ที่ต้องการให้เลือกเอาไว้ จากนั้นก็ทำการเรียก JOptionPane แล้วก็เรียก method showOptionDialog แล้วใส่ค่า frame ตามด้วย ค่าที่ต้องการแสดง ตามด้วย title ตามด้วย option Type ตามด้วย message Type ที่ต้องการ ตามด้วย Icon แล้วตามด้วย Option ที่เราได้สร้างขึ้น สุดท้ายใส่ค่าเริ่มต้นที่ต้องการ

ผลลัพธ์ที่ได้


yengo หรือ buzzcity

ไม่มีความคิดเห็น :

แสดงความคิดเห็น