Learn Java Tutorial 1 32 JPanels and BorderLayout 720p
Learn Java Tutorial 1 31 JPanel and JButton 720p
Here you will find all guides that will help you get a game up and running, all the tutorials you need to get familiar with software, how to, art, programming, codes, ...
Java (Playlist 3) GUI - ITA 14: che belli i JPanel!
Prima di completare il dettaglio sui JTextfield impadroniamoci di un tecnica di impaginazione molto importante per lavorare con qualunque layout manager: ...
Prima di tutto vorrei ringraziare il prof per la sua guida, nonostante io
fossi totalmente privo di basi è riuscito con pochi video a farmi capire le
nozioni fondamentali. Nonostante ciò ho un piccolo problema: non so come
ottenere il testo da una JTextField per poi utilizzarlo in un'altra
finestra. Mi spiego meglio: ho creato una finestra con una JTextField in
cui l'utente può scrivere il suo nome, sempre nella stessa finestra c'è un
bottone che apre una seconda finestra. Nella seconda finestra vorrei fare
apparire in un JLabel la seguente scritta: ( "benvenuto" + nomeUtente)
Kick starting our Window and JPanel - Java Beginner 2D Game Development #1
Finally, we're putting our knowledge into use. I know some of you wanted this and demanded this, so here you go :) Leave a like and subscribe to show some ...
What does line 11 do ?
setSize(new Dimension(500, 400));
Removing it doesn't seem to make any difference? :)
*Edit :* I'm guessing it's setting the size of the actual canvas and not
the frame?
If it is, how come I still get a black screen even if I set it to 50, 40 in
Dimension? :D
Both setSize and setPreferredSize changes the dimension of the panel. When you changed the values for setSize the screen still goes black (presumably on a window of the exact same size as before), it made no difference. This is because setPreferredSize changes the values in setSize, because.. Well, let's just say the new size is 'preferred' by the panel so the frame adapts to that. In other words setSize is a little redundant here :P
I get the error message:
Error: Could not find or load
main class GradleStart
This is my code:
package me.Puffinlump;
import java.awt.Dimension;
import javax.swing.JFrame;
public class Crash_Da_Cars {
public static void main(String[] args){
JFrame frame = new JFrame();
frame.setTitle("Crash dem cars!");
frame.setSize(new Dimension(600, 200));
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
}
Can anyone help?