|
|
|
ช่วยดูโค้ดการใส่รูปใน Java Applet ทีครับ JButton กับ Image ใส่รูปบนปุ่มกด |
|
|
|
|
|
|
|
Code (Java)
import java.awt.Color;
import javax.swing.ImageIcon;
import javax.swing.JApplet;
import javax.swing.JButton;
public class yahoo extends JApplet {
private JButton button,picture;
public void init() {
setBackground(Color.PINK);
button = new JButton("clilck here");
ImageIcon pic = new ImageIcon("flower.jpg");
picture=new JButton(pic);
add(button);
add(picture);
}
}
ลองแบบนี้ได้ไหม๊ครับ
|
|
|
|
|
Date :
2014-02-14 07:29:19 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ได้ครับ เหมือนเดิม
|
|
|
|
|
Date :
2014-02-14 18:04:51 |
By :
FreeDom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ลองรันภายใต้ Web Server ล่ะครับ
|
|
|
|
|
Date :
2014-02-15 08:28:43 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|