public interface Border
在Swing组件集中,边框取代了Insets作为在组件边缘周围创建(装饰或平面)区域的机制。
使用说明:
setInsets
)。 BorderFactory
, EmptyBorder
, CompoundBorder
Modifier and Type | Method and Description |
---|---|
Insets |
getBorderInsets(Component c)
返回边框的插入。
|
boolean |
isBorderOpaque()
返回边框是否不透明。
|
void |
paintBorder(Component c, Graphics g, int x, int y, int width, int height)
用指定的位置和大小绘制指定组件的边框。
|