当前位置: 技术问答>java相关
请问怎样在JPanel中画图,也就是怎样获取Graphics对象来做图,或是其他方法?谢谢!再Applicaition而不是再Applet中!
来源: 互联网 发布时间:2015-09-09
本文导语: 请问怎样在JPanel中画图,也就是怎样获取Graphics对象来做图,或是其他方法?谢谢!再Applicaition而不是再Applet中! | import javax.swing.JPanel; ............ class .... { .....{ ... n...
请问怎样在JPanel中画图,也就是怎样获取Graphics对象来做图,或是其他方法?谢谢!再Applicaition而不是再Applet中!
|
import javax.swing.JPanel;
............
class .... {
.....{
...
new JFrame().getContentPane().add(new JPanel() {
public void paint(Graphic g) {
g.drawString(...);
}
});
}
public static void main(String[] args) {
...........
}
}
............
class .... {
.....{
...
new JFrame().getContentPane().add(new JPanel() {
public void paint(Graphic g) {
g.drawString(...);
}
});
}
public static void main(String[] args) {
...........
}
}