Java First Form Applet

Source: Internet
Author: User

Import java.awt.*;
public class Day1015_frame
{
public static void Main (string[] args)
{
Frame frame =new Frame ("My first Windows");
Frame.setlayout (New GridLayout (7,1));
lable components
Frame.add ("Preferences (can be checked):"));
CheckBox component
Frame.add (New Checkbox ("Music"));
Frame.add (New Checkbox ("Sport"));
Frame.add (New Checkbox ("Art"));
Choice components
Choice c=new Choice ();
C.add ("Red");
C.add ("Green");
C.add ("Blue");
Frame.add (c);
List component
List L=new list (3,false);
L.add ("first grade");
L.add ("second grade");
L.add ("third grade");
Frame.add (l);
Button component
Frame.add (New button ("Test button"));
Frame.pack ();//Adjust window to accommodate all components
Frame.setvisible (TRUE);//Display window
System.out.println ("End Press CTRL + C");
}


}

Java First Form Applet

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.