用Java编写Applet程序 5

编写一个Applet程序,使用随机颜色,输出一个彩色的字符串“计算机世界”... 编写一个Applet程序,使用随机颜色,输出一个彩色的字符串“计算机世界” 展开
 我来答
呜鸽5459
2010-12-16 · TA获得超过1023个赞
知道小有建树答主
回答量:1047
采纳率:0%
帮助的人:479万
展开全部
没有2万块没有人给你做
谷歌七彩鱼
2010-12-16
知道答主
回答量:30
采纳率:0%
帮助的人:22.9万
展开全部
我一般开价3万
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
霸篮峦g
2010-12-16 · TA获得超过342个赞
知道答主
回答量:92
采纳率:0%
帮助的人:49.4万
展开全部
//这个例题帮到你

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class simple extends JFrame implements AdjustmentListener{
public simple(){
setTitle("simple");
setSize(300, 200);
addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent e){
System.exit(0);
}
});
Container contentPane = getContentPane();
JPanel p = new JPanel();
p.setLayout(new GridLayout(3, 2));
p.add(redLabel = new JLabel("Red 0"));
p.add(red = new JScrollBar(Adjustable.HORIZONTAL, 0, 0, 0, 255));
red.setBlockIncrement(16);
red.addAdjustmentListener(this);

p.add(greenLabel = new JLabel("Green 0"));
p.add(green = new JScrollBar(Adjustable.HORIZONTAL, 0, 0, 0, 255));
green.setBlockIncrement(16);
green.addAdjustmentListener(this);

p.add(blueLabel = new JLabel("Blue 0"));
p.add(blue = new JScrollBar(Adjustable.HORIZONTAL, 0, 0, 0, 255));
blue.setBlockIncrement(16);
blue.addAdjustmentListener(this);

contentPane.add(p, "South");

colorPanel = new JPanel();
colorPanel.setBackground(new Color(0, 0, 0));
contentPane.add(colorPanel, "Center");
}

public void adjustmentValueChanged(AdjustmentEvent evt){
redLabel.setText("Red " + red.getValue());
greenLabel.setText("Green " + green.getValue());
blueLabel.setText("Blue " + blue.getValue());
colorPanel.setBackground(new Color(red.getValue(), green.getValue(), blue.getValue()));
colorPanel.repaint()
}

public static void main(String[] args){
JFrame f = new simple();
f.show();
}
private JLabel redLabel;
private JLabel greenLabel;
private JLabel blueLabel;
private JScrollBar red;
private JScrollBar green;
private JScrollBar blue;
private JPanel colorPanel;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式