Тёмный

JavaFX ImageView 🖼️ 

Bro Code
Подписаться 2,1 млн
Просмотров 79 тыс.
50% 1

Опубликовано:

 

11 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 52   
@BroCodez
@BroCodez 3 года назад
// ******************** Controller.java ******************** package application; import javafx.fxml.FXML; import javafx.scene.control.Button; import javafx.scene.image.Image; import javafx.scene.image.ImageView; public class Controller { //ImageView is a Node used for painting images loaded with Images // Image = picture // ImageView = picture frame @FXML ImageView myImageView; Button myButton; Image myImage = new Image(getClass().getResourceAsStream("shrek2.jpg")); public void displayImage() { myImageView.setImage(myImage); } } // ********************************************************
@sofbreez6987
@sofbreez6987 2 года назад
What about main class, what we gonna type there 🤔
@andreacb5062
@andreacb5062 2 года назад
@@sofbreez6987 do you have it?
@MO-R-70-23
@MO-R-70-23 11 месяцев назад
​@@sofbreez6987The usual
@bigmarshmellow2502
@bigmarshmellow2502 2 года назад
this applies to all of ur JavaFX videos but you've singlehandedly saved my CS project. your videos have given me a proper understanding of most fundamental JavaFX concepts and take me through using its features in a way that's slow enough for me to understand but fast enough to not bore me to death like other tutorials. you're one of the best in the game, keep it up
@jegor06
@jegor06 3 года назад
Bro.. Praying for the RU-vid algorithm
@aether7159
@aether7159 2 года назад
I have to use JavaFX for my assignments this week and I'm glad I found your videos! Shrek is very inspirational, good choice! 😎
@ChopperCheeks
@ChopperCheeks 10 месяцев назад
yep... doin it right now 2 days before its due
@halcyon-s
@halcyon-s Год назад
if u have a problems with mouse entered, change the event from action to mouse, like this: "public void displayAvatar(MouseEvent)", but its important to use for button action event
@Patty13558
@Patty13558 3 года назад
Great video thanks bro
@softwaretanq5889
@softwaretanq5889 3 года назад
You make Java so fun to learn ! Keep up the gr8 work!
@filipraso135
@filipraso135 3 года назад
You are the best man....
@aleprominecraft25
@aleprominecraft25 Год назад
Bruh you´ve save my whole Data Structure curse haha
@john9497
@john9497 3 года назад
nice 👍
@ctluwua7695
@ctluwua7695 3 года назад
NICE IMAGES
@glorysonhorace3265
@glorysonhorace3265 2 года назад
Nice content broh
@so20l
@so20l 2 года назад
Great job bro.
@Remolhunter97
@Remolhunter97 3 года назад
Love your content !
@inkkouttritue6142
@inkkouttritue6142 Год назад
you literally saved my life bro
@vtome4165
@vtome4165 3 года назад
Great videos, perfect tempo for me, upload more of this, please, :)
@splintergaming822
@splintergaming822 3 года назад
Hey Bro xD i really like your content and your way of explaining things Keep up !! And please do a Javascript Course I'm really needing that thnx..
@alexanderzharkov6953
@alexanderzharkov6953 2 года назад
Bro, you are awesome!!!!!!!!!
@MarianoGrande1
@MarianoGrande1 3 года назад
Shrek is love, Shrek is life.
@younesssgh8586
@younesssgh8586 3 года назад
thanks Broo i learnt a lot from your tutos
@ihorvolkov5600
@ihorvolkov5600 2 года назад
I like it!
@andrewkerr7697
@andrewkerr7697 Год назад
Dude you are the man
@chocodonuts3644
@chocodonuts3644 9 месяцев назад
please make more javafx videos
@csbmstyles4431
@csbmstyles4431 3 года назад
Nice
@susianasunjaya1886
@susianasunjaya1886 2 года назад
Thankyou so much bro, i owe you :'D
@vedantdeshmukh1549
@vedantdeshmukh1549 3 года назад
Bro post more stuff I am addicted to your channel
@eriktim82
@eriktim82 2 года назад
Was watching your video a I noticed you never showed your main class. Do you mind posting?
@alexandru-vladpal522
@alexandru-vladpal522 3 года назад
😁😁😁😁😁😁😁😁😁😁
@abeer5252
@abeer5252 2 года назад
Thanks!
@alyssacowen5564
@alyssacowen5564 11 месяцев назад
How can I make it so a user can upload a profile picture from their saved pictures in their files?
@halcyon-s
@halcyon-s Год назад
thanks!!!
@Arxa93
@Arxa93 2 года назад
Thx bro
@ivancaccia9023
@ivancaccia9023 2 года назад
Hi bro, What If I want to Show/Hide the picture using the button? How can I do that?
@junaidjaved7478
@junaidjaved7478 9 месяцев назад
@chemso_1
@chemso_1 5 месяцев назад
dabest
@userpiero5359
@userpiero5359 3 года назад
Guys is good using a gui designer or writing the code
@khalilzouhir5862
@khalilzouhir5862 Год назад
it doesnt work for me gives me error i followed every step is it jst me guys ?
@remylebeau9344
@remylebeau9344 3 месяца назад
I had the same issue and finally got it to work... The issue seems to be with the version of JavaFX and/or openJDK in the lesson vs. what I'm using and probably what you used. I'm using v22 for both but below are my notes including the last line which resolved it. // This is the lesson example but won't work. Some issue w/ the stream which results in null // Image myImage = new Image(getClass().getResourceAsStream("/images/image2.png")); // This version works but it's not JavaFX i.e. it's a work around to some stream issue. // Image myImage = new Image(String.valueOf(new File("/images/image2.png"))); // OK This actually works! AS:LKDAS:DJKH!@#!@(&*#!@# Image myImage = new Image( getClass().getResource( "/images/image2.png").toExternalForm());
@alanoliver1816
@alanoliver1816 2 года назад
Alright video overall, the only thing I did not like is that you did not show how to get scenebuilder downloaded and configuring the path. Other than that good video
@kingpin9999
@kingpin9999 3 года назад
I cracked myself at 00:02
@compteteach1369
@compteteach1369 3 года назад
you insisted on us for comment, i could not reject you
@vasilizaitsev7246
@vasilizaitsev7246 3 года назад
Great job bro.
Далее
JavaFX TextField 💬
6:39
Просмотров 59 тыс.
JavaFX stages 🎭
13:49
Просмотров 115 тыс.
A small kitten was dumped #cat #kitten #cutecat
00:41
Apple Event - September 9
1:38:50
Просмотров 25 млн
УДОЧКА ЗА 1$ VS 10$ VS 100$!
22:41
Просмотров 280 тыс.
Cursor Is Beating VS Code (...by forking it)
18:00
Просмотров 64 тыс.
JavaFX scenes + drawing stuff 🌄
15:18
Просмотров 78 тыс.
JavaFX animations 🎬
9:24
Просмотров 47 тыс.
JavaFX communication between controllers 📣
7:12
Просмотров 91 тыс.
JavaFX install Scene Builder 🛠️
10:14
Просмотров 100 тыс.
JavaFX CSS styling 🎨
10:28
Просмотров 86 тыс.
JavaFX install & setup (IntelliJ) 💡
5:09
Просмотров 234 тыс.
A small kitten was dumped #cat #kitten #cutecat
00:41