当前位置: 技术问答>java相关
请问可以在applet上指定的位置上放一个按钮吗?比如(100,100)这个点上。谢谢!
来源: 互联网 发布时间:2015-02-17
本文导语: | 先在applet的init方法里,setLayout(null); 然后定义一个button,在用button.setBounds(100,100,70,30); 第一,二个参数为x,y值,第三,四参数为按钮的长宽。 然后把button添加到applet上 add(button); | setLayout(null) Butto...
|
先在applet的init方法里,setLayout(null);
然后定义一个button,在用button.setBounds(100,100,70,30);
第一,二个参数为x,y值,第三,四参数为按钮的长宽。
然后把button添加到applet上
add(button);
然后定义一个button,在用button.setBounds(100,100,70,30);
第一,二个参数为x,y值,第三,四参数为按钮的长宽。
然后把button添加到applet上
add(button);
|
setLayout(null)
Button v = new Button("d");
v.setBound(int x,
int y,
int width,
int height);
Button v = new Button("d");
v.setBound(int x,
int y,
int width,
int height);
|
必须把布局设为空的,
您可以参考java核心技术这本书你就可以知道了。
setLayout(null);
Button button = new Button(String buttontext);
button.setBound(int x,int y,int width,int height);
不过sun不推荐你使用这种方法的。
您可以参考java核心技术这本书你就可以知道了。
setLayout(null);
Button button = new Button(String buttontext);
button.setBound(int x,int y,int width,int height);
不过sun不推荐你使用这种方法的。