Đang chuẩn bị liên kết để tải về tài liệu:
lt_java_csdl_bai_3_components_part_2_6359

Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG

| LẬP TRÌNH JAVA CSDL BÀI 3 COMPONENTS Nguyễn Hữu Thể 1 Nội dung JList JTable JMenu JOptionPane JFileChooser 2 JList Creating a Model There are three ways to create a list model DefaultListModel everything is pretty much taken care of for you. The examples in this page use DefaultListModel. AbstractListModel you manage the data and invoke the quot fire quot methods. For this approach you must subclass AbstractListModel and implement the getSize and getElementAt methods inherited from the ListModel interface. ListModel you manage everything. JList Initializing a List list new JList data data has type Object list.setSelectionMode ListSelectionModel.SINGLE_INTERVAL_SE LECTION list.setLayoutOrientation JList.HORIZONTAL_WRAP list.setVisibleRowCount -1 . JScrollPane listScroller new JScrollPane list listScroller.setPreferredSize new Dimension 250 80 JList DefaultListModel Methods addElement Object e get int index getSize getElementAt int index remove int index Elements removeAllElements 5 JList Methods setModel ListModel model getModel getMaxSelectionIndex getMinSelectionIndex getSelectedIndex getSelectedIndices getSelectedValue getSelectedValues Events valueChanged 6 JTable 7 JOptionPane 8 JTable DefaultTableModel addColumn Object obj addRow Object obj getColumnCount getRowCount getValueAt int row int col setValueAt Object obj int row int col 9 JTable Methods setModel TableModel tm getModel getValueAt int row int col getRowCount getColumnCount Events mouseClicked 10 JTable package project import javax.swing.JFrame import javax.swing.JScrollPane import javax.swing.JTable public class JTableComponent public static void main String argv throws Exception Object cellData quot 1-1 quot quot 1-2 quot quot 2-1 quot quot 2-2 quot String columnNames quot col1 quot quot col2 quot JTable table new JTable cellData columnNames JFrame f new JFrame f.setSize 300 300 f.add new JScrollPane table f.setVisible true 11 JTable DefaultTableModel Constructs a default DefaultTableModel which is

Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.