鍍金池/ 教程/ Java/ Swing JWindow類及實(shí)例
Swing JRadioButton
Swing Layout布局
Swing JTextField
Swing JLabel
Swing開發(fā)環(huán)境安裝
Swing JComponent類
SWING ActionEvent事件類
Swing JScrollBar
Swing教程首頁
Swing JFileChooser
SWING ContainerEvent事件處理類
Swing AdjustmentListener接口
Swing WindowAdapter類
SWING ComponentListener接口
Swing JMenuBar類
Swing JPanel類及實(shí)例
Swing
SWING AdjustmentEvent事件處理
Swing JWindow類及實(shí)例
Swing介紹
Swing MouseMotionAdapter類
SWING WindowEvent事件類
Swing ItemListener接口
SWING MouseEvent事件類
Swing JMenu類
SWING KeyEvent事件類
Swing MouseMotionListener接口
Swing JProgressBar
SWING AWTEvent事件類
Swing JRadioButtonMenuItem類及例子
Swing KeyAdapter類
SWING ActionListener接口
Swing LayoutManager接口
SWING MouseMotionEvent事件處理
Swing Component類
Swing Container類
Swing CardLayout布局
Swing MouseAdapter類
Swing JSlider
Swing KeyListener接口
Swing FocusAdapter類
Swing JColorChooser
Swing ImageIcon
Swing JComboBox
Swing GroupLayout布局類
Swing JOptionPane
Swing GridBagLayout布局類
Swing JMenuItem類
Swing MouseListener Interface
Swing事件適配器
SWING ComponentEvent處理類
SWING PaintEvent事件類
Swing FlowLayout布局類
SWING Event事件類
Swing FocusListener接口
Swing控件
Swing JButton
Swing JCheckBox
Swing SpringLayout布局類
Swing容器
Swing事件處理
Swing事件監(jiān)聽器
Swing Menu菜單類
Swing JList
Swing ContainerListener接口
Swing LayoutManager2接口
Swing JFrame類和實(shí)例
Swing JTextArea
SWING InputEvent事件類
Swing BorderLayout布局
Swing WindowListener接口
Swing JCheckboxMenuItem類及例子
Swing JSpinner
Swing GridLayout布局類
Swing JPopupMenu類及實(shí)例

Swing JWindow類及實(shí)例

JWindow類是一個(gè)容器,可以顯示,但不具有標(biāo)題欄或窗口管理按鈕。

類聲明

以下是聲明 javax.swing.JWindow類:

public class JWindow
   extends Window
      implements Accessible, RootPaneContainer

字段域

以下是java.awt.Component 類的字段:

  • protected AccessibleContext accessibleContext -- 訪問上下文屬性。

  • protected JRootPane rootPane -- JRootPane實(shí)例管理的contentPane和可選的菜單欄,以及該幀的玻璃面板。

  • protected boolean rootPaneCheckingEnabled -- 如果為真(true)則調(diào)用添加的setLayout將被轉(zhuǎn)發(fā)到contentPane。

類構(gòu)造函數(shù)

S.N. 構(gòu)造函數(shù) & 描述
1 JWindow() 
Creates a window with no specified owner.
2 JWindow(Frame owner) 
Creates a window with the specified owner frame.
3 JWindow(GraphicsConfiguration gc)
Creates a window with the specified GraphicsConfiguration of a screen device.
4 JWindow(Window owner) 
Creates a window with the specified owner window.
5 JWindow(Window owner, GraphicsConfiguration gc) 
Creates a window with the specified owner window and GraphicsConfiguration of a screen device.

類方法

S.N. 方法 & 描述
1 protected void addImpl(Component comp, Object constraints, int index) 
Adds the specified child Component.
2 protected JRootPane createRootPane() 
Called by the constructor methods to create the default rootPane.
3 AccessibleContext getAccessibleContext() 
Gets the AccessibleContext associated with this JWindow.
4 Container getContentPane() 
Returns the Container which is the contentPane for this window.
5 Component getGlassPane() 
Returns the glassPane Component for this window.
6 Graphics getGraphics() 
Creates a graphics context for this component.
7 JLayeredPane getLayeredPane() 
Returns the layeredPane object for this window.
8 JRootPane getRootPane() 
Returns the rootPane object for this window.
9 TransferHandler getTransferHandler() 
Gets the transferHandler property.
10 protected boolean isRootPaneCheckingEnabled() 
Returns whether calls to add and setLayout are forwarded to the contentPane.
11 protected String paramString() 
Returns a string representation of this JWindow.
12 void remove(Component comp) 
Removes the specified component from the container.
13 void repaint(long time, int x, int y, int width, int height) 
Repaints the specified rectangle of this component within time milliseconds.
14 void setContentPane(Container contentPane) 
Sets the contentPane property for this window.
15 void setGlassPane(Component glassPane) 
Sets the glassPane property.
16 void setLayeredPane(JLayeredPane layeredPane) 
Sets the layeredPane property.
17 void setLayout(LayoutManager manager) 
Sets the LayoutManager.
18 protected void setRootPane(JRootPane root) 
Sets the new rootPane object for this window.
19 protected void setRootPaneCheckingEnabled(boolean enabled) 
Sets whether calls to add and setLayout are forwarded to the contentPane.
20 void setTransferHandler(TransferHandler newHandler) 
Sets the transferHandler property, which is a mechanism to support transfer of data into this component.
21 void update(Graphics g) 
Calls paint(g).
22 protected void windowInit() 
Called by the constructors to init the JWindow properly.

方法繼承

這個(gè)類從以下類繼承的方法:

  • java.awt.Window

  • java.awt.Container

  • java.awt.Component

  • java.lang.Object

JWindow 例子

選擇使用任何編輯器創(chuàng)建以下java程序在 D:/ > SWING > com > yiibai > gui >

SwingContainerDemo.java
package com.yiibai.gui;

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class SwingContainerDemo {
   private JFrame mainFrame;
   private JLabel headerLabel;
   private JLabel statusLabel;
   private JPanel controlPanel;
   private JLabel msglabel;

   public SwingContainerDemo(){
      prepareGUI();
   }

   public static void main(String[] args){
      SwingContainerDemo  swingContainerDemo = new SwingContainerDemo();  
      swingContainerDemo.showJWindowDemo();
   }

   private void prepareGUI(){
      mainFrame = new JFrame("Java Swing Examples");
      mainFrame.setSize(400,400);
      mainFrame.setLayout(new GridLayout(3, 1));
      mainFrame.addWindowListener(new WindowAdapter() {
         public void windowClosing(WindowEvent windowEvent){
            System.exit(0);
         }        
      });    
      headerLabel = new JLabel("", JLabel.CENTER);        
      statusLabel = new JLabel("",JLabel上一篇:Swing KeyListener接口下一篇:Swing JFileChooser