| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 817 人关注过本帖
标题:[原创]APPLET滚动条的问题?
取消只看楼主 加入收藏
小爪哇豆
Rank: 1
等 级:新手上路
帖 子:11
专家分:0
注 册:2006-1-1
收藏
 问题点数:0 回复次数:0 
[原创]APPLET滚动条的问题?
import java.applet.*;
import java.awt.*;
public class colordemo extends Applet
{
mypanel myscroll;
int cred=0,cgreen=0,cblue=0;
Color custom;
public void init()
{
resize(320,200);
myscroll=new mypanel();
add(myscroll);
custom=new Color(cred,cgreen,cblue);
}
public boolean handleEvent(Event e)
{
if(e.target.equals(myscroll.scroll1))
{
cred=myscroll.scroll1.getValue();
custom=new Color(cred,cgreen,cblue);
repaint();
}
if(e.target.equals(myscroll.scroll2))
{
cgreen=myscroll.scroll2.getValue();
custom=new Color(cred,cgreen,cblue);
repaint();

}
if(e.target.equals(myscroll.scroll3))
{
cblue=myscroll.scroll3.getValue();
custom=new Color(cred,cgreen,cblue);
repaint();
}
myscroll.text1.setText("red:"+String.valueOf(cred)+";green:"+String.valueOf(cgreen)+";blue:"+String.valueOf(cblue));
return true;
}
public void paint(Graphics g)
{
g.setColor(custom);
g.fillRect(80,120,90,130);
}
class mypanel extends Panel
{
Scrollbar scroll1,scroll2,scroll3;
TextField text1;
mypanel()
{
setLayout(new GridLayout(4,1));
scroll1=new Scrollbar(Scrollbar.HORIZONTAL,1,10,1,255);
scroll2=new Scrollbar(Scrollbar.HORIZONTAL,1,10,1,255);
scroll3=new Scrollbar(Scrollbar.HORIZONTAL,1,10,1,255);
text1=new TextField(30);
add(scroll1);
add(scroll2);
add(scroll3);
add(text1);
scroll1.setBackground(Color.red);
scroll2.setBackground(Color.green);
scroll3.setBackground(Color.blue);
}
}
}
/*custom词JAVA里有吗?(还是自己定的)
*g.fillRect(80,120,90,130);这句的四个数字分别是起什么做用的?
改了之后就不随滚动条滑动而改变颜色了。
哪句话说明TextField放在滚动条下面。是不是他选择了GridLayout容器后自己排的?
*/
搜索更多相关主题的帖子: APPLET myscroll custom cred public 
2006-02-20 22:58
快速回复:[原创]APPLET滚动条的问题?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016402 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved