本文整理匯總了Java中javax.swing.JTable.setAutoCreateColumnsFromModel方法的典型用法代碼示例。如果您正苦於以下問題:Java JTable.setAutoCreateColumnsFromModel方法的具體用法?Java JTable.setAutoCreateColumnsFromModel怎麽用?Java JTable.setAutoCreateColumnsFromModel使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類javax.swing.JTable
的用法示例。
在下文中一共展示了JTable.setAutoCreateColumnsFromModel方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: createConstraintsTable
import javax.swing.JTable; //導入方法依賴的package包/類
public JTable createConstraintsTable(boolean rebuild) {
JTable table = new JTable(new VRPTableModel(rebuild));
table.setPreferredScrollableViewportSize(new Dimension(60, 60));
table.setAutoscrolls(true);
table.setAutoCreateColumnsFromModel(true);
table.setAutoResizeMode(JTable.AUTO_RESIZE_ALL_COLUMNS);
table.setMaximumSize(new Dimension(60, 60));
table.setBackground(Color.LIGHT_GRAY);
table.setBorder(BorderFactory.createCompoundBorder());
table.setForeground(Color.BLACK);
table.setShowGrid(true);
return table;
}
示例2: createStatsTable
import javax.swing.JTable; //導入方法依賴的package包/類
private JPanel createStatsTable(String title, Map<String, String> data) {
JPanel panel = new JPanel();
panel.setLayout(new BorderLayout());
panel.add(new JLabel(title), BorderLayout.PAGE_START);
StatisticsModel model = new StatisticsModel();
model.setData(data);
JTable table = new JTable(model);
table.setAutoCreateColumnsFromModel(true);
table.setAutoResizeMode(JTable.AUTO_RESIZE_ALL_COLUMNS);
table.setAutoCreateRowSorter(true);
JScrollPane scrollPane = new JScrollPane(table);
table.addNotify();
scrollPane.getViewport().setOpaque(false);
scrollPane.getColumnHeader().setOpaque(false);
panel.add(scrollPane, BorderLayout.CENTER);
panel.setPreferredSize(new Dimension(300, (data.size()+2)*17));
return panel;
}