Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
public void actionPerformed(java.awt.event.ActionEvent e) {
CardLayout cl = (CardLayout) (cards.getLayout());
cl.show(cards, "1");
showTableContent();
String table = new String();
table = tbls_jComboBox1.getSelectedItem().toString();
if (getCbUpdate().isSelected()
&& table.equals("laptopbestand")) {
System.out.println("Wichtig! " + table);
System.out.println("Ups UPdate");
} else {
cl.show(cards, "2");
}
if (getCbNeuAnlegen().isSelected()
&& table.equals("laptopbestand")) {
cl.show(cards, "1");
} else {
System.out.println("Ups Neu");
}
cards.add(card1, "NeuLaptopbestand");cards.add(card2, "UpdLaptopbestand");
cards.show("NeuLaptopbestand"); cards.show("UpdLaptopbestand");
meinst?Ich wollt sie aber übereinander zeigen...
cards = new JPanel();
JPanel card1 = new JPanel();
JPanel card2 = new JPanel();
card1.add(new JButton("Test"));
card2.add(new JButton("Test2"));
CardLayout cl = new CardLayout();
cards = new JPanel();
cards.setLayout(cl);
cards.setBounds(new Rectangle(270, 9, 735, 236));
cl.addLayoutComponent(card1,"1");
cl.addLayoutComponent(card2,"2");
cards.add(card1, "1");
cards.add(card2, "2");
cl.show(cards,"1");
return cards;
jPLaptopbestand.add(jLabel4, null);
jPLaptopbestand.add(jLabel4);
jContentPane.setLayout(new GridLayout(2, 0));