package client.frm;
import java.awt.Color;
import java.awt.Dimension;
import javax.swing.JPanel;
/**
* 仅仅为了填充BorderLayout的宽度
*/
public class FillWidth extends JPanel {
public FillWidth(int width,int height) {
setPreferredSize(new Dimension(width,height));
}
public FillWidth(int width,int height,Color color) {
this(width,height);
setOpaque(true);
setBackground(color);
}
}
最近下载更多
krispeng LV15
2024年6月4日
陈小灏 LV18
2023年12月27日
xinxin23383 LV7
2023年11月28日
liugua777 LV2
2023年5月7日
微信网友_6444139264921600 LV8
2023年4月29日
xiexiaoming05 LV14
2022年5月21日
waitingforyou LV20
2022年3月31日
13112360 LV2
2021年12月5日
Aoifee LV4
2021年11月9日
18350164218 LV13
2021年6月18日

最近浏览