当前位置: 代码迷 >> Java相关 >> [求助]Frame有那些属性
  详细解决方案

[求助]Frame有那些属性

热度:283   发布时间:2006-01-23 09:39:00.0
[求助]Frame有那些属性
Frame每次运行时都自动在屏幕的左上角,
用什么命令改变他的初始位置,
还有如何得到Frame的宽和高等一些属性呢?
有这方面资料的给我发上来好吗,
谢了
搜索更多相关的解决方案: Frame  属性  

----------------解决方案--------------------------------------------------------

设置位置你可以用SETLOCATION( ,);
改变大小你可以用SETSIZE(,);这种东西你可以在资料上看啊,任何基础资料上都有的啊,


----------------解决方案--------------------------------------------------------
楼上说的对,要学好JAVA,就要认真看书,不厌其烦,有的甚至要看几遍
----------------解决方案--------------------------------------------------------
public void setBounds(int x,int y,int width,int height)
function:
Moves and resizes this component. The new location of the top-left corner is specified by x and y, and the new size is     specified by width and height.


public int getHeight()
function:
Returns the current height of this component.


public int getWidth()
function:
Returns the current width of this component.

(注:一切尽在帮助文档)

[此贴子已经被作者于2006-1-29 13:16:44编辑过]


----------------解决方案--------------------------------------------------------
谢了
----------------解决方案--------------------------------------------------------
  相关解决方案