Java GUI 🖼️

preview_player
Показать описание
Java GUI frame JFrame swing tutorial for beginners

#Java #GUI #frame #JFrame #swing #tutorial #beginners

public class Main {

public static void main(String[] args) {

// JFrame = a GUI window to add components to

JFrame frame = new JFrame(); //creates a frame


}
}
Рекомендации по теме
Комментарии
Автор

import java.awt.Color;
import javax.swing.ImageIcon; import javax.swing.JFrame;

public class Main {

public static void main(String[] args) {

// JFrame = a GUI window to add components to

JFrame frame = new JFrame(); //creates a frame
frame.setTitle("JFrame title goes here"); //sets title of frame
//exit from application
frame.setResizable(false); //prevent frame from being resized
frame.setSize(420, 420); //sets the x-dimension, and y-dimension of frame
frame.setVisible(true); //make frame visible
ImageIcon image = new ImageIcon("logo.png"); //create an ImageIcon
//change icon of frame
Color(0x123456)); //change color of background }

}

BroCodez
Автор

Best java tutorial playlist on Youtube, I want to thank for what you've done, keep up good work!

phuongdonguyen
Автор

You're doing gods work by creating Java FX / GUI vids cuz my stupid uni wants us to learn this and I didnt understand shit in the lectures but I found this. Thx

djrkm
Автор

Man, i wish everyone whos lookin to learn lava finds this channel! Its just absolutely the best!

kemann
Автор

"Let's set the size by 420 to 420 because that's a funny number." LMAO. This had me laffin.

tngflash
Автор

This is the best Java tutorial for beginners, so you can learn Java and English in one hit. Please keep going! I vote for Java advance tutorial. Thanks a lot Bro

pavelkvasnicka
Автор

I am really glad that I find your youtube channel. You are saviour man

KaviBalan
Автор

Never got this idea of using subclass of JFrame instead of repeating the same code several times in different projects. Thanks Bro.

shankar
Автор

very fun very interactive lessons as well as structural knowledge, love it man 👍

rock
Автор

You are great, these videos are precious. Thank you bro.

Sleepmedicine-kzcw
Автор

best ever tutorial i've ever watch, thank you Bro Code

jerryagsunod
Автор

I really like the way your patience of explaining.

gemmarosemolina
Автор

❤️Superb, good explanation, keep it up. 👏👍👌

sankartechpro
Автор

Bro keep this up, i really like your way of explaining everything. I just began to code, your videos will guarantee me a job in the future :)

bitks
Автор

You are carrying my friend and I in our java comp sci class, THANK YOU!!!

paniccookie_
Автор

Honestly thank you so much, my java skill got improved by watching you

knyeeasto
Автор

great video!!! I'm infinitely grateful for your dedication and big heart to share this knowledge with the world. Thank you soo much

dianamilenaarchilacordoba
Автор

This is also a nice way to understand the keyword this. Keyword this basically just pretends to be an instance of the class in which you are in.

smrtfasizmu
Автор

Bro I recommended ur videos to my classmates they like it.

renecabuhan
Автор

Bro is our shining star in the middle of the night

Simis