import java.awt.*;
import java.applet. *;
public class CheckboxDemo extends Applet {
public void init() {
setLayout(null);
int width = Integer.parseInt(getParameter("width"));
int height = Integer.parseInt(getParameter("height"));
Checkbox win1 = new Checkbox("Windows XP", null, true);
Checkbox win2 = new Checkbox("Windows 2000");
Checkbox win3 = new Checkbox("Windows 98");
add(win1);
add(win2);
add(win3);
win1.reshape(0,0, width, height / 3);
win2.reshape(0, height / 3, width, height / 3);
win3.reshape(0,2 * height / 3, width, height / 3);
}
}
Немає коментарів:
Дописати коментар