当前位置: 技术问答>java相关
请教几个方法!
来源: 互联网 发布时间:2015-10-28
本文导语: this.setLocation(120, 120); this.setResizable(false); (new Scrollbar()).setValue((new Color()).getBlue()); 这几个方法什么意思? | this.setLocation(120, 120); //设置控件的左上角的顶点位置. this.setResizab...
this.setLocation(120, 120);
this.setResizable(false);
(new Scrollbar()).setValue((new Color()).getBlue());
这几个方法什么意思?
|
this.setLocation(120, 120); //设置控件的左上角的顶点位置.
this.setResizable(false); //设置其大小
(new Scrollbar()).setValue((new Color()).getBlue());
//生成一个新的滚动条,并且设置它的值.
//不赞成这样写,不好理解,也没有name但是好像高手往往都是这样写的..
this.setResizable(false); //设置其大小
(new Scrollbar()).setValue((new Color()).getBlue());
//生成一个新的滚动条,并且设置它的值.
//不赞成这样写,不好理解,也没有name但是好像高手往往都是这样写的..
|
this.setResizable(false)不是设置大小,而是设置可不可以设置大小的属性,false就是不能。