Tuesday, April 23, 2019

basics of event handling



1.  label: 

 l=new Label();  
 l.setText("string");



2. textbox:

TextField tf;
String s=tf.getText();
tf3.setText(text);


3. text area:

area=new TextArea();
 String text=area.getText();

    textArea = new TextArea(2, 10);
    textArea.setSize(300, 100);

    textArea.setText("123456 789123");


4. checkbox:

Checkbox checkbox2 = new Checkbox("Java"true);  



5. checkbox group :
  
CheckboxGroup cbg = new CheckboxGroup(); 
Checkbox checkBox1 = new Checkbox("C++", cbg, false);                       Checkbox checkBox2 = new Checkbox("Java", cbg, false); 



6. list box:

Choice c=new Choice();  
        c.setBounds(100,100, 75,75);  
        c.add("Item 1");  
        c.add("Item 2");  
        c.add("Item 3");  
        c.add("Item 4");  

        c.add("Item 5"); 


No comments:

Post a Comment