-
大小: 4KB文件類型: .rar金幣: 1下載: 0 次發(fā)布日期: 2021-01-10
- 語言: Java
- 標(biāo)簽: Video.java??
資源簡介
Write a Swing application for a video store named Video.java.Place the names of 10 of your favorite movies in a drop-down list.Let the user select the movie he or she wants to rent.
Charge $2 for most movies, and $2.50 for your personal favorite movie.
Display the rental fee.
代碼片段和文件信息
import?java.awt.*;
import?javax.swing.*;
import?java.awt.event.ActionEvent;
import?java.awt.event.ActionListener;
public?class?Myframe?extends?Jframe?implements?ActionListener?{
public?static?final?long?serialVersionUID?=?0;
public?static?final?int?DEFAULT_WIDTH?=?300;
public?static?final?int?DEFAULT_HEIGHT?=?200;
String?movies[]?=?{?“none““盜夢空間““哈利波特7““海角七號““雛菊““山楂樹之戀““劍雨““大笑江湖““趙氏孤兒““狄仁杰之通天帝國““大叔“?};
private?final?JTextField?textFiesd?=?new?JTextField();;
private?JPanel?northPanel;
private?JComboBox?video;
public?Myframe(){
settitle(“Play?It?Again?Videos“);
setSize(DEFAULT_WIDTHDEFAULT_HEIGHT);
setLocation(100100);
northPanel?=?new?JPanel();
video?=?new?JComboBox(movies);
video.setSelectedIndex(0);???//設(shè)置默認(rèn)項(xiàng)
video.addAction
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????????301??2010-12-13?23:04??實(shí)驗(yàn)11\.classpath
?????文件????????384??2010-12-13?23:04??實(shí)驗(yàn)11\.project
?????文件????????629??2010-12-13?23:04??實(shí)驗(yàn)11\.settings\org.eclipse.jdt.core.prefs
?????文件???????2357??2010-12-14?10:09??實(shí)驗(yàn)11\bin\Myfr
?????文件????????512??2010-12-14?09:32??實(shí)驗(yàn)11\bin\Video.class
?????文件???????1646??2010-12-14?10:09??實(shí)驗(yàn)11\src\Myfr
?????文件????????297??2010-12-14?09:32??實(shí)驗(yàn)11\src\Video.java
?????目錄??????????0??2011-01-02?11:53??實(shí)驗(yàn)11\.settings
?????目錄??????????0??2011-01-02?11:53??實(shí)驗(yàn)11\bin
?????目錄??????????0??2011-01-02?11:53??實(shí)驗(yàn)11\src
?????目錄??????????0??2011-01-02?11:53??實(shí)驗(yàn)11
-----------?---------??----------?-----??----
?????????????????6126????????????????????11
評論
共有 條評論