I have a panel derived from JPanel. I have a custom control derived from JLabel. I am attempting to center this custom JLabel on my pa
JPanel
JLabel
Use this.
labelName.setHorizontalAlignment(SwingConstants.CENTER);
or
labelName.setHorizontalAlignment(JPanel.CENTER);
Both of them must work.