Código
Código Javascript:
Ver original
package javaapplication9; /** * * @author programacion */ import javax.swing.*; public class Main { /** * @param args the command line arguments */ public static void main(String[] args) { Pantalla ventana = new Pantalla(); ventana.setTitle("The Button"); ventana.setSize(800,600); ventana.setVisible(true); package javaapplication9; * * To change this template, choose Tools | Templates * and open the template in the editor. */ package javaapplication65; /** * * @author programacion */ import java.awt.BorderLayout; import java.awt.Color; import java.awt.Label; import javax.swing.*; public class Pantalla extends JFrame { JPanel Panel = new JPanel (); public Pantalla(){ JButton b = new JButton("Siguiente"); Panel.add(b); add(Panel); JPanel p = new JPanel(); p.setLayout ( new BorderLayout()); p.add("North",new Label("Etiqueta,Label.Center")); setLayout ( new BorderLayout ( ) ) ; add ( "South",Panel ) ; } } Class presentación extends JFrame{ setTitle(“Presentacion”); setSize(1024,768); setVisible(true); JPanel panel = new Panel(); JButton b1 = new JButton("Anterior"); JButton b2 = new JButton("Imprimir"); JButton b3 = new JButton("Video"); JButton b4 = new JButton("Sonido"); JButton b5 = new JButton("Finalizar"); Public presentación(){ panel.add(b1); panel.add(b2); panel.add(b3); panel.add(b4); panel.add(b5); add(panel); panel.setLayout ( new BorderLayout()); panel.add("North",new Label("Etiqueta,Label.Center")); setLayout ( new BorderLayout ( ) ) ; add ( "South",panel) ; } }
hasta los momentos eso eslo que he hecho, me falta el codigo para que cuando haga click en los botones siguiente, anterior y finalizar realicen la accion deseada
PD: cualquier error de ortografia con respecto al programa sucede por que la mayoria lo hice en bloc de notas.