关于java draw3DRect()方法的问题

importjavax.swing.*;importjava.awt.Graphics;publicclassTestPaintComponentextendsJFram... import javax.swing.*;
import java.awt.Graphics;

public class TestPaintComponent extends JFrame {
public TestPaintComponent() {
add(new NewLabel("Banner"));
}

public static void main(String[] args) {
TestPaintComponent frame = new TestPaintComponent();
frame.setTitle("TestPaintComponent");
frame.setLocationRelativeTo(null); // Center the frame
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(200, 200);
frame.setVisible(true);
}
}

class NewLabel extends JLabel {
public NewLabel(String text) {
super(text);
}

protected void paintComponent(Graphics g) {
g.draw3DRect(10, 10, 100, 100, true);
super.paintComponent(g);

}
}
为什么我引用了g.draw3DRect(10, 10, 100, 100, true);但实际效果没有图形没有3d效果.请高手解答一下
展开
 我来答
nilaor
2010-06-21 · TA获得超过903个赞
知道小有建树答主
回答量:537
采纳率:0%
帮助的人:538万
展开全部
draw3DRect绘制的矩形,其边是高亮显示的,以至于从左上角看呈斜面并加亮。

对于二维图来说,要想很明显清楚地看清是3d效果的话,还是很难的。效果不会太好。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式