Java JFrame架构中RootPane--GlassPane的应用

本文探讨了Java JFrame结构中的GlassPane组件,它位于frame-layeredPane-contentPane-menuBar之上。GlassPane在可见时可以捕获事件并在屏幕上绘制,阻挡所有输入事件到达内容 pane 中的组件,并在鼠标按下位置画一个红点。
摘要由CSDN通过智能技术生成

Java JFrame中从里到外由frame-layeredPane-contentPane-menuBar(optional)-glassPane构成。layered pane用处很大就不必说了。现在是其中glass pane的应用。


package com.han;

import java.awt.Color;
import java.awt.Component;
import java.awt.Container;
import java.awt.FlowLayout;
import java.awt.Graphics;
import java.awt.Point;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;
import java.awt.event.MouseEvent;

import javax.swing.AbstractButton;
import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.SwingUtilities;
import javax.swing.event.MouseInputListener;

/**
 * It contains a check box that lets you set whether the glass pane is "visible"
 * — whether it can get events and paint itself onscreen. When the glass pane is
 * visible, it blocks all input events from reaching the components in the
 * content pane. It also paints a red dot in the place where it last detected a
 * mouse-pressed event.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值