Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone



Clound SSD Virtual Server

Java Internal Frame (JInternalFrame) - Swing Example

Java Internal Frame (JInternalFrame) - Example สำหรับ JInternalFrame (javax.swing.JInternalFrame) เป็น Container ที่ใช้แสดงใน Desktop Pane (JDesktopPane) โดยภายใน Desktop Pane หนึ่ง ๆ จะสามารถประกอบด้วยหลาย ๆ Internal Frame และภายใน Internal Frame ก็ใช้การออกแบบด้วย JFrame ได้ตามปกติ

Java Internal Frame  (JInternalFrame)

Java Internal Frame (JInternalFrame) - Swing Example


Syntax
JDesktopPane desktop = new JDesktopPane();

MyInternalFrame frame = new MyInternalFrame();
frame.setVisible(true);

Containers Icon Tools

Java Internal Frame  (JInternalFrame)

Icons ของ GUI Tools

Java Internal Frame  (JInternalFrame)

ประกอบด้วยไฟล์ 2 ไฟล์คือ MyForm.java และ MyInternalFrame.java

Example

MyForm.java
package com.java.myapp;

import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.Toolkit;
import javax.swing.JDesktopPane;
import javax.swing.JFrame;
import javax.swing.JButton;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;

public class MyForm extends JFrame {

	JDesktopPane desktop;

	/**
	 * Launch the application.
	 */
	public static void main(String[] args) {
		EventQueue.invokeLater(new Runnable() {
			public void run() {
				MyForm frame = new MyForm();
				frame.setVisible(true);
			}
		});
	}

	/**
	 * Create the frame.
	 */
	public MyForm() {
		setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		setTitle("ThaiCreate.Com Java GUI Tutorial");

		int inset = 50;
		Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
		setBounds(inset, inset, screenSize.width - inset * 2, screenSize.height
				- inset * 2);

		desktop = new JDesktopPane();
		setContentPane(desktop);

		desktop.setDragMode(JDesktopPane.OUTLINE_DRAG_MODE);
		
		// Button Open
		JButton btnOpenFrame = new JButton("Open Frame");
		btnOpenFrame.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent arg0) {
				createFrame(); 
			}
		});
		
		btnOpenFrame.setBounds(29, 11, 116, 23);
		desktop.add(btnOpenFrame);

	}

	protected void createFrame() {
		MyInternalFrame frame = new MyInternalFrame();
		frame.setVisible(true);
		desktop.add(frame);
		try {
			frame.setSelected(true);
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

}

MyInternalFrame.java
package com.java.myapp;

import java.awt.EventQueue;
import javax.swing.JInternalFrame;
import javax.swing.JLabel;

public class MyInternalFrame extends JInternalFrame {

    static int openFrameCount = 0;
    static final int xOffset = 30, yOffset = 30;
    
	/**
	 * Launch the application.
	 */
	public static void main(String[] args) {
		EventQueue.invokeLater(new Runnable() {
			public void run() {
				try {
					MyInternalFrame frame = new MyInternalFrame();
					frame.setVisible(true);
				} catch (Exception e) {
					e.printStackTrace();
				}
			}
		});
	}

	/**
	 * Create the frame.
	 */
	public MyInternalFrame() {
		super("Document #" + (++openFrameCount), 
	              true, //resizable
	              true, //closable
	              true, //maximizable
	              true);//iconifiable
		setBounds(100, 100, 450, 300);
		getContentPane().setLayout(null);
		
		setLocation(xOffset*openFrameCount, yOffset*openFrameCount);
		
		JLabel lblNewLabel = new JLabel("ThaiCreate.Com");
		lblNewLabel.setBounds(178, 109, 108, 14);
		getContentPane().add(lblNewLabel);

	}
}









Output

Java Internal Frame  (JInternalFrame)

แสดง Desktop Pane ทดสอบคลิกที่ Open Frame

Java Internal Frame  (JInternalFrame)

แสดง Internal Frame

Java Internal Frame  (JInternalFrame)

ภายใน Desktop Pane สามารถมีได้หลาย Internal Frame








   
Share

Property & Method (Others Related)

Java GUI Swing Containers
Java Panel (JPanel) - Swing Example
Java Tabbed Pane (JTabbedPane) - Swing Example
Java Split Pane (JSplitPane) - Swing Example
Java Scroll Pane (JScrollPane) - Swing Example
Java Tool Bar (JToolBar) - Swing Example
Java Desktop Pane (JDesktopPane) - Swing Example
Java Layered Pane (JLayeredPane) - Swing Example

ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท


ลองใช้ค้นหาข้อมูล


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2013-08-18 13:22:44 / 2017-03-27 18:00:17
  Download : No files
 Sponsored Links / Related

 
Java GUI Swing Containers
Rating :


ThaiCreate.Com Forum


Comunity Forum Free Web Script
Jobs Freelance Free Uploads
Free Web Hosting Free Tools

สอน PHP ผ่าน Youtube ฟรี
สอน Android การเขียนโปรแกรม Android
สอน Windows Phone การเขียนโปรแกรม Windows Phone 7 และ 8
สอน iOS การเขียนโปรแกรม iPhone, iPad
สอน Java การเขียนโปรแกรม ภาษา Java
สอน Java GUI การเขียนโปรแกรม ภาษา Java GUI
สอน JSP การเขียนโปรแกรม ภาษา Java
สอน jQuery การเขียนโปรแกรม ภาษา jQuery
สอน .Net การเขียนโปรแกรม ภาษา .Net
Free Tutorial
สอน Google Maps Api
สอน Windows Service
สอน Entity Framework
สอน Android
สอน Java เขียน Java
Java GUI Swing
สอน JSP (Web App)
iOS (iPhone,iPad)
Windows Phone
Windows Azure
Windows Store
Laravel Framework
Yii PHP Framework
สอน jQuery
สอน jQuery กับ Ajax
สอน PHP OOP (Vdo)
Ajax Tutorials
SQL Tutorials
สอน SQL (Part 2)
JavaScript Tutorial
Javascript Tips
VBScript Tutorial
VBScript Validation
Microsoft Access
MySQL Tutorials
-- Stored Procedure
MariaDB Database
SQL Server Tutorial
SQL Server 2005
SQL Server 2008
SQL Server 2012
-- Stored Procedure
Oracle Database
-- Stored Procedure
SVN (Subversion)
แนวทางการทำ SEO
ปรับแต่งเว็บให้โหลดเร็ว


Hit Link
   







Load balance : Server 02
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่