posted 21 years ago
i created a class that extends JPanel, and added a JComboBox to it. i (hopefully) made them the same size like so:
i then have another JPanel with a 2X2 GridLayout with JLabels in the top row and StandardColorSelector's in the second row. the Jlables are left aligned , but the StandardColorSelector's are centered. i tried to left align them like so:
private StandardColorSelector backcolor = new StandardColorSelector();
private StandardColorSelector forecolor = new StandardColorSelector();
.
.
.
forecolor.setAlignmentX(LEFT_ALIGNMENT);
backcolor.setAlignmentX(LEFT_ALIGNMENT);
but it doesnt work
i also tried this:
and this:
[ February 16, 2004: Message edited by: Randall Twede ]