我在with中有两个JTable
对象。我把它们放在 a 中,然后将它们显示为弹出窗口。我也在两张桌子上都放了一个。JPanel
GridLayout
JOptionPane
OK_CANCEL
JScrollPane
但是,它JOptionPane
的大小是巨大的。我尝试使用以下方法设置不同的表格、滚动窗格和 jpanel 大小:
table.setSize(int w, int h)
jpanel.setSize(int w, int h)
jscrollpane.setSize(int w, int h)
但这些都不会导致更小JOptionPane
(或表格)。
这是它的外观,我使用 1366*768 作为分辨率。上面提到的都不会有任何区别
private void showEditItemSuppliersDialog()
{
String newItemSupplierTables [] = { "#", "Name", "" };
JPanel panel = new JPanel(new GridLayout(0, 2, 5, 5));
/* table 1 */
allItemsEditItemSuppliersTableModel = new DefaultTableModel(null, newItemSupplierTables);
allItemsEditItemSuppliersTable = new JTable(allItemsEditItemSuppliersTableModel);
allItemsEditItemSuppliersTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
JScrollPane allItemsEditItemSuppliersTableScrollPane = new JScrollPane();
allItemsEditItemSuppliersTableScrollPane.setViewportView(allItemsEditItemSuppliersTable);
/* table 1 end */
/* table 2 */
allItemsEditItemSuppliersAllTableModel = new DefaultTableModel(null, newItemSupplierTables);
allItemsEditItemSuppliersAllTable = new JTable(allItemsEditItemSuppliersAllTableModel);
allItemsEditItemSuppliersAllTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
JScrollPane allItemsEditItemSuppliersAllTableScrollPane = new JScrollPane();
allItemsEditItemSuppliersAllTableScrollPane.setViewportView(allItemsEditItemSuppliersAllTable);
/* table 2 end*/
panel.add(allItemsEditItemSuppliersTableScrollPane);
panel.add(allItemsEditItemSuppliersAllTableScrollPane);
int option = JOptionPane.showConfirmDialog(null, panel, "Edit", JOptionPane.OK_CANCEL_OPTION);
if (option == JOptionPane.YES_OPTION)
{
System.out.println("Pressed OK");
}
}