当前位置: 代码迷 >> J2SE >> java有关applet的一个小疑点
  详细解决方案

java有关applet的一个小疑点

热度:70   发布时间:2016-04-24 00:37:25.0
java有关applet的一个小问题
怎样设置applet小程序的文字颜色,比如applet显示“this is a test”,设置为红色。 谢谢。本人菜鸟..

------解决方案--------------------
首先,你的字是怎么显示的,是在Label上还是在Panel上
Label上用setForeground设置
Panel上通过paint方法实现,Graphics的drawString来显示,颜色用Graphics的setColor来设置
  相关解决方案