這樣:
十多年的通海網(wǎng)站建設(shè)經(jīng)驗(yàn),針對設(shè)計(jì)、前端、開發(fā)、售后、文案、推廣等六對一服務(wù),響應(yīng)快,48小時及時工作處理。網(wǎng)絡(luò)營銷推廣的優(yōu)勢是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動調(diào)整通海建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計(jì),從而大程度地提升瀏覽體驗(yàn)。創(chuàng)新互聯(lián)建站從事“通海網(wǎng)站設(shè)計(jì)”,“通海網(wǎng)站推廣”以來,每個客戶項(xiàng)目都認(rèn)真落實(shí)執(zhí)行。
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;?
import java.awt.Graphics;?
public class MainClass extends JFrame {
public JComboBox box;
int flag = 0;
jpNewPanel jpNewPanel;?
public static void main(String[] args) {
MainClass frame = new MainClass();
frame.setBounds(650,300,550,550);
? frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
? frame.setTitle("信號燈");
? frame.setVisible(true);
}?
public MainClass() {
? box = new JComboBox();
? box.addItem("請選擇");
? box.addItem("紅燈");
? box.addActionListener(new ActionListener() {
? ? ? public void actionPerformed(ActionEvent e) {
? ? ? ? ? flag = box.getSelectedIndex();
? ? ? ? ? jpNewPanel.repaint();
? ? ? }
? });
? box.addItem("黃燈");
? box.addActionListener(new ActionListener() {
? ? ? public void actionPerformed(ActionEvent e) {
? ? ? ? ? flag = box.getSelectedIndex();
? ? ? ? ? jpNewPanel.repaint();
? ? ? }
? });
? box.addItem("綠燈");
? box.addActionListener(new ActionListener() {
? ? ? public void actionPerformed(ActionEvent e) {
? ? ? ? ? flag = box.getSelectedIndex();
? ? ? ? ? jpNewPanel.repaint();
? ? ? }
? });
? add(box, BorderLayout.NORTH);
? jpNewPanel = new jpNewPanel();
? add(jpNewPanel, BorderLayout.CENTER);
}
class jpNewPanel extends JPanel {
? protected void paintComponent(Graphics g) {
? ? ? super.paintComponent(g);
? ? ? g.drawOval(150, 0, 120, 120);
? ? ? if (flag == 1) {
? ? ? ? ? g.setColor(Color.RED);
? ? ? ? ? g.fillOval(150, 0, 120, 120);
? ? ? } else if (flag == 2) {
? ? ? ? ? g.setColor(Color.YELLOW);
? ? ? ? ? g.fillOval(150, 0, 120, 120);
? ? ? } else if (flag == 3) {
? ? ? ? ? g.setColor(Color.GREEN);
? ? ? ? ? g.fillOval(150, 0, 120, 120);
? ? ? }
? }
}
}
擴(kuò)展資料:
注意事項(xiàng)
每個Road對象都有一個name成員變量來代表方向,有一個vehicles成員變量來代表方向上的車輛集合。
在Road對象的構(gòu)造方法中啟動一個線程每隔一個隨機(jī)的時間向vehicles集合中增加一輛車(用一個“路線名_id”形式的字符串進(jìn)行表示)。
在Road對象的構(gòu)造方法中啟動一個定時器,每隔一秒檢查該方向上的燈是否為綠,是則打印車輛集合和將集合中的第一輛車移除掉。
JFrame的默認(rèn)布局管理器是BorderLayout,有五個方向,TOP、LEFT、CENTER、RIGHT、BOTTOM,如果不給控件制定方向的話會都繪制到同一個默認(rèn)方向CENTER,所以你最后添加的jf2把之前添加的組件都覆蓋了,為每個組件指定方向即可。建議使用JPanel,使用FlowLayout。
import java.awt.BorderLayout;
import java.awt.EventQueue;import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import javax.swing.JLabel;
import javax.swing.JTextField;
import javax.swing.JButton;public class T extends JFrame { private JPanel contentPane;
public JLabel lblNewLabel;
public JLabel label;
public JLabel label_1;
public JTextField textField;
public JTextField textField_1;
public JButton btnNewButton;
public JButton button; public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
T frame = new T();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
public T() {
setTitle("JFrame窗體例子");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 300, 200);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
contentPane.setLayout(null);
lblNewLabel = new JLabel("帳號:");
lblNewLabel.setBounds(70, 60, 30, 21);
contentPane.add(lblNewLabel);
label = new JLabel("密碼:");
label.setBounds(70, 91, 30, 21);
contentPane.add(label);
label_1 = new JLabel("圖片標(biāo)簽");
label_1.setBounds(10, 10, 264, 40);
contentPane.add(label_1);
textField = new JTextField();
textField.setBounds(102, 60, 109, 21);
contentPane.add(textField);
textField.setColumns(10);
textField_1 = new JTextField();
textField_1.setColumns(10);
textField_1.setBounds(102, 91, 109, 21);
contentPane.add(textField_1);
btnNewButton = new JButton("登錄");
btnNewButton.setBounds(217, 128, 57, 24);
contentPane.add(btnNewButton);
button = new JButton("設(shè)置");
button.setBounds(10, 128, 57, 24);
contentPane.add(button);
}
}
主要步驟如下:
1、File——New Project
2、Next
3、輸入Name,在Project files location中選擇文件要存放的位置,Next
4、Next
5、選擇要創(chuàng)建的項(xiàng)目或者直接點(diǎn)finish,創(chuàng)建簡單的java項(xiàng)目
6、創(chuàng)建一個新類
7、如下:
8、輸入代碼:
9、Ctrl+Shift+F10,運(yùn)行該類:
當(dāng)前名稱:java中窗體的構(gòu)造代碼 java寫窗體程序
文章轉(zhuǎn)載:http://jinyejixie.com/article10/dosgcdo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供靜態(tài)網(wǎng)站、網(wǎng)站營銷、Google、外貿(mào)建站、網(wǎng)站設(shè)計(jì)、App設(shè)計(jì)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)