⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gridbagconstraintsdefine.java

📁 打印管理程序,测试完全通过.windows开发环境.
💻 JAVA
字号:
package jp.co.ntl.awt;

import java.awt.GridBagConstraints;
import java.awt.Insets;

public class GridBagConstraintsDefine extends GridBagConstraints {
	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	public GridBagConstraintsDefine(int gridx, int gridy, int gridwidth, int gridheight, double weightx, double weighty, int anchor, int fill, Insets insets, int ipadx, int ipady)
	{
		this.gridx		= gridx;
		this.gridy		= gridy;
		this.gridwidth	= gridwidth;
		this.gridheight	= gridheight;
		this.weightx	= weightx;
		this.weighty	= weighty;
		this.anchor		= anchor;
		this.fill		= fill;
		this.insets		= insets;
		this.ipadx		= ipadx;
		this.ipady		= ipady;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -