Hola a todos, pasa que quiero poner un botón en donde vengan 2 palabras separadas por un enter:
CONSULTAR/
MODIFICAR
Ya intente con el \n pero no me funciona, este es mi código
private Boton getConMod(){
if (botonConMod == null) {
botonConMod = new Boton();
botonConMod.setSize(95, 25);
botonConMod.setBounds(20, 445, 100, 60);
botonConMod.setText("CONSULTAR \n MODIFICAR");
botonConMod.set_FocoAutomatico(false);
botonConMod.set_Fuente(new java.awt.Font("SansSerif",
java.awt.Font.PLAIN, 11));
botonConMod.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent e) {
if(banderaConMod == false)
cargarCatalogos();
else
modificarCatalogo();
}
});
}
return botonConMod;
}
Alguien podría ayudarme?
Muchísimas Gracias.