• 大小: 1.04KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-01
  • 标签: java  

资源简介

java常用组件实例(入门级)

资源截图

代码片段和文件信息

import java.awt.*;
import javax.swing.*;
public class ComponentInWindow extends Jframe { 
   JTextField text;
   JButton button;
   JCheckBox checkBox1checkBox2checkBox3;
   JRadioButton radio1radio2;
   ButtonGroup group;
   JComboBox comBox; 
   JTextArea area;
   public ComponentInWindow() {
      init();
      setVisible(true);
      setDefaultCloseOperation(Jframe.EXIT_ON_CLOSE);
   }
   void init() {
      setLayout(new FlowLayout());
      add(new JLabel(“文本框:“));
      text=new JTextField(10); 
      add(text);
      add(new JLabel(“按钮:“));
      button=new JButton(“确定“); 
      add(button);
      add(new JLabel(“选择框:“));
      checkBox1 = new JCheckBox(“喜欢音乐“); 
      checkBox2 = new JCheckBox(“喜欢旅游“);
      checkBox3 = new JCheckBox(“喜欢篮球“);  

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        1459  2016-10-31 17:49  ComponentInWindow.java
     文件         207  2016-10-31 18:19  Example9_3.java

评论

共有 条评论