JFrame frame = new JFrame("A JFrame"); public class MyForm extends JFrame {
package com.java.myapp; import javax.swing.JFrame; public class MyForm { public static void main(String[] args) { JFrame frame = new JFrame("A JFrame"); frame.setSize(250, 250); frame.setLocation(300,200); frame.setVisible(true); } }
package com.java.myapp; import javax.swing.JFrame; import javax.swing.JLabel; public class MyForm extends JFrame { public static void main(String[] args) { MyForm frame = new MyForm(); frame.setVisible(true); } public MyForm() { // JFrame Property super("ThaiCreate.Com Tutorial Java GUI"); // Title setSize(300, 200); setLocation(500, 280); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); getContentPane().setLayout(null); // Text Label JLabel welcome = new JLabel("Welcome to ThaiCreate.Com"); welcome.setBounds(70, 50, 164, 60); getContentPane().add(welcome); } }
ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท