package com.swift; import java.awt.Color; import java.awt.GridLayout; import java.util.Random; import javax.swing.JFrame; import javax.swing.JPanel; public class RP_Frame extends JFrame { private static final long serialVersionUID = 1L; public RP_Frame() { setBounds(200, 200, 500, 300); //设置窗体大小位置 setTitle("Java窗体的基本操作语句"); //设置窗体标题 JPanel pnBasic=new JPanel(); //生成一个大画布 setContentPane(pnBasic); //放在窗体中 pnBasic.setLayout(new GridLayout(4,3,5,5)); //画布按照两行一列网格布局,行与行列与列间隔5像素// JPanel pnGreen=new JPanel(); //再生成一个小绿画布// JPanel pnYellow=new JPanel(); //再生成一个小黄画布// pnYellow.setBackground(Color.YELLOW); //画布设置颜色// pnGreen.setBackground(Color.GREEN); //画布设置颜色// pnBasic.add(pnYellow); // pnBasic.add(pnGreen); for(int i=0; i<(4*3); i++) { JPanel pn=new JPanel(); //生成多个小画布 Random ran=new Random(); int red=ran.nextInt(256); int yellow=ran.nextInt(256); int blue=ran.nextInt(256); pn.setBackground(new Color(red,yellow,blue)); //画布设置随机颜色 pnBasic.add(pn); //放入大画布 } // final JButton btn = new JButton(); // btn.setText(" ఠൠఠ小破钮 ఠൠఠ"); // setContentPane(btn); // btn.addActionListener(new ActionListener() { // @Override // public void actionPerformed(ActionEvent e) { // Random ran = new Random(); // int index = ran.nextInt(101); // System.out.println("Hello!" + index); // btn.setText("变变变" + index); // } // } ); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); //设置关闭窗体时程序停止运行 setVisible(true); //设置窗体可见,否则什么都不会显示 } public static void main(String[] args) { new RP_Frame(); } }
The above is the detailed content of Basic operation statements of Java forms. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

许多企业员工在做项目展示介绍时,通常会用到ppt进行演示,制作一个图文并茂的ppt,在展示起来也比较有观赏性。所以ppt对于一个办公人员来说,跟word、Excel同样重要,都是必备的办公软件。掌握一些基本的操作技巧非常有必要。1、首先,让我们看看PPT中的菜单栏。可以看到,红色框线中的,就是PPT的功能栏。包括“开始”、“插入”、“设计”、“动画”、“幻灯片放映”、“审阅”、“视图”。另外,在左上角,橙色方框“WPS演示”,也内含很多常用功能。2、开始“开始”中,它的功能包括了很多其他菜单中的


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download
The most popular open source editor

Notepad++7.3.1
Easy-to-use and free code editor
