SuperVCD管理系统 完整代码,带各种注释,可以拿这个项目入门。
* 这个类构建CD面板
*/
public class MusicPanel extends JPanel {
protected JLabel selectionLabel;
protected JComboBox categoryComboBox;
protected JPanel topPanel;
protected JList musicListBox;
protected JScrollPane musicScrollPane;
protected JButton detailsButton;
protected JButton clearButton;
protected JButton exitButton;
protected JPanel bottomPanel;
protected MainFrame parentFrame;
protected ArrayList musicArrayList;
protected MusicDataClient myDataClient;
public MusicPanel(MainFrame theParentFrame) {
try {
parentFrame = theParentFrame;
myDataClient = new MusicDataClient();
selectionLabel = new JLabel("选择音乐目录");
categoryComboBox = new JComboBox();
categoryComboBox.addItem("-------");