📄 gridbaglayoutaction.java
字号:
/*
* BorderLayoutAction.java
*
* Created on 2007年5月5日, 上午9:44
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package dyno.swing.designer.beans.actions;
import dyno.swing.designer.beans.SwingDesigner;
import java.awt.GridBagLayout;
import java.awt.LayoutManager;
/**
*
* @author William Chen
*/
public class GridBagLayoutAction extends LayoutContextAction {
/** Creates a new instance of BorderLayoutAction */
public GridBagLayoutAction(SwingDesigner designer) {
super(designer);
}
protected Class<?extends LayoutManager> getLayoutClass() {
return GridBagLayout.class;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -