1 / 12

EJERCICIO NUMERO 5

EJERCICIO NUMERO 5. ALUMNO ROGER STEVEN ORDUZ. SE REALIZA EL NUEVO PROJECTO. ESTA ES LA VENTANA PRINCIPAL. SE AGREGA O SE AÑADE UNA ETIQUETA (LABEL) CON BORDE etiResultado TENIENDO EN CUENTA LAS MAYUSCULAS.

lamond
Download Presentation

EJERCICIO NUMERO 5

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. EJERCICIO NUMERO 5 ALUMNO ROGER STEVEN ORDUZ

  2. SE REALIZA EL NUEVO PROJECTO

  3. ESTA ES LA VENTANA PRINCIPAL SE AGREGA O SE AÑADE UNA ETIQUETA (LABEL) CON BORDE etiResultado TENIENDO EN CUENTA LAS MAYUSCULAS

  4. SE AÑADE UN CUADRO DE LISTA LLAMADO JLIST DONDE SE BORRA TODO EL CONTENIDO EN LA PROPIEDAD MODELY SE LE CAMBIA EL NOMBRE A lstNombre EN EL OBJETO JScrollPane

  5. Para los que todavía no saben

  6. Bueno luego se añaden dos botones Curso 1 en el texto Y se llama btnCurso1 Curso 2 en el texto Y se llama btnCurso2

  7. En el evento actionPerformed del botón “Curso 1” se añade DefaultListModel modelo = new DefaultListModel(); modelo.addElement("Juan"); modelo.addElement("María"); modelo.addElement("Luis"); lstNombres.setModel(modelo);

  8. En el evento actionperformed del boton “curso2” se añade DefaultListModel modelo = new DefaultListModel(); modelo.addElement("Ana"); modelo.addElement("Marta"); modelo.addElement("Jose"); lstNombres.setModel(modelo);

  9. Click y cambia el listado.

  10. Ahora añade el siguiente código al evento mouseClicked del cuadro de lista:o del label • etiResultado.setText(lstNombres.getSelectedValue().toString()); • el método getSelectedValue permite recoger el elemento seleccionado (hay que convertirlo a cadena con toString

  11. Se ejecuta el programa Click y aparece el elemento seleccionado en la etiqueta.

More Related