※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
import java.awt.*; public class Test4 extends Frame { public Test4 () { super (); setTitle("Hello"); setSize (300,150); setLayout(null); Label mylabel; mylabel = new Label ("Hello World."); mylabel.setBounds(50,50,200,30); this.add ("Center",mylabel); Button mybutton; mybutton = new Button ("OK"); mybutton.setBounds(100,100,100,25); this.add ("South",mybutton); } public static void main (String args []) { new Test4 ().setVisible(true); } }
<< 前へ | 次へ >> |