📄 allingmentcomponent.java
字号:
package com.vimas.interfaceapplet;
import java.awt.*;
/**
* <p>Title: </p>
* <p>Description: </p>
* <p>Copyright: Copyright (c) 2004</p>
* <p>Company: Vimas technologies</p>
* @author miha
* @version 1.0
*/
public class AllingmentComponent extends Component
{
int width;
int height;
public AllingmentComponent(int w, int h)
{
super();
this.width=w;
this.height=h;
}
//*****************************************************************************
public Dimension getPreferredSize()
{
return new Dimension(width, height);
}
//*****************************************************************************
public Dimension getMinimumSize() {
return new Dimension(width, height);
}
//*****************************************************************************
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -