Java GridLayout 🔳

แชร์
ฝัง
  • เผยแพร่เมื่อ 23 พ.ย. 2024

ความคิดเห็น • 70

  • @BroCodez
    @BroCodez  4 ปีที่แล้ว +34

    import java.awt.GridLayout;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    public class Main{
    public static void main(String[] args) {
    // Layout Manager = Defines the natural layout for components within a container

    // GridLayout = places components in a grid of cells.
    // Each component takes all the available space within its cell,
    // and each cell is the same size.
    JFrame frame = new JFrame();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(500, 500);
    frame.setLayout(new GridLayout(3,3,0,0));

    frame.add(new JButton("1"));
    frame.add(new JButton("2"));
    frame.add(new JButton("3"));
    frame.add(new JButton("4"));
    frame.add(new JButton("5"));
    frame.add(new JButton("6"));
    frame.add(new JButton("7"));
    frame.add(new JButton("8"));
    frame.add(new JButton("9"));

    frame.setVisible(true);
    }
    }

    • @joyceasante8292
      @joyceasante8292 ปีที่แล้ว +2

      import java.awt.GridLayout;
      import javax.swing.JButton;
      import javax.swing.JFrame;
      public class Main{
      public static void main(String[ ]args){
      JFrame frame = new JFrame();
      frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      frame.setSize(500, 500);
      frame.setLayout(new GridLayout(1,10,10,10));
      frame.add(new JButton("1"));
      frame.add(new JButton("2"));
      frame.add(new JButton("3"));
      frame.add(new JButton("4"));
      frame.add(new JButton("5"));
      frame.add(new JButton("6"));
      frame.add(new JButton("7"));
      frame.add(new JButton("8"));
      frame.add(new JButton("9"));
      frame.add(new JButton("0"));
      frame.setVisible(true);
      }
      }

  • @benwilkins9070
    @benwilkins9070 3 ปีที่แล้ว +24

    My teacher used your video to teach us, and i have to say,
    He picked a good video. You did a really good job!

  • @pavelkvasnicka6856
    @pavelkvasnicka6856 ปีที่แล้ว +2

    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

  • @antoinealam6531
    @antoinealam6531 2 หลายเดือนก่อน

    bro's teaching generations to code for free,
    He's definitely going to heaven.

  • @post-humanentity8206
    @post-humanentity8206 6 หลายเดือนก่อน +1

    just dropping a comment, these guides still are amazing

  • @НікітаОрлов-с3ч
    @НікітаОрлов-с3ч 2 ปีที่แล้ว +1

    Thanks for lessons. You are the best teacher

  • @srijanmajumdar7507
    @srijanmajumdar7507 3 ปีที่แล้ว +1

    Nice,easy to catch for beginners

  • @tahaayaz6357
    @tahaayaz6357 4 ปีที่แล้ว +1

    simple easy an making me pass the test, thanks bro bro

  • @SquareRoot_
    @SquareRoot_ 3 ปีที่แล้ว +1

    Thanks for the video!

  • @zaina170
    @zaina170 ปีที่แล้ว

    you're a life saver fr!! thank u king

  • @celiaballesteros2908
    @celiaballesteros2908 3 ปีที่แล้ว

    Its just like css grids. Thanks for the video man.

  • @alexshepel5599
    @alexshepel5599 4 ปีที่แล้ว +2

    Nice, bro!

  • @eugenezuev7349
    @eugenezuev7349 6 หลายเดือนก่อน

    I learned something new, thanks

  • @DreamQuestGamer
    @DreamQuestGamer 3 ปีที่แล้ว

    how grid layout tends to fill component in a frame?
    like when we use 9 component and a grid layout of(3,3) then it creates 3 row and 3 column but when we use 10 component and grid layout of(3,3) then it creates 3 rows 4 column . why ?? please explain.

  • @elorabimohamed3877
    @elorabimohamed3877 4 ปีที่แล้ว

    I am looking for some JavaFX projects to learn from and practice

  • @СергейЛуговой-э6у
    @СергейЛуговой-э6у 7 หลายเดือนก่อน

    спасибо бро, я не понимаю инглишь, но все равно все понял, что ты показал

  • @wesleyversartalvescostadel8854
    @wesleyversartalvescostadel8854 ปีที่แล้ว

    Nice video

  • @eshana5993
    @eshana5993 3 ปีที่แล้ว

    thankyou for the explanation, you helped me good xx

  • @saso2744
    @saso2744 2 ปีที่แล้ว

    thank you bro .. keep it up

  • @felixnyamongo
    @felixnyamongo 2 ปีที่แล้ว

    Yo.. I smashed the like button.

  • @chatabeto
    @chatabeto หลายเดือนก่อน

    so useful, thanks.

  • @noziphomamadi8023
    @noziphomamadi8023 ปีที่แล้ว

    Bro if simple was a person I could say is you ❤

  • @hmahfouz25
    @hmahfouz25 3 ปีที่แล้ว

    great channel bro keep going

  • @sabermmirza
    @sabermmirza 4 ปีที่แล้ว +1

    Hey Bro thanks for sharing , your doing great job :)

    • @Dilgash.
      @Dilgash. 2 ปีที่แล้ว +1

      What a small World, hi😅😅

    • @sabermmirza
      @sabermmirza 2 ปีที่แล้ว

      @@Dilgash. really ? Are you Dr. Dilgash ? 😃

  • @DanielleOwrutsky
    @DanielleOwrutsky ปีที่แล้ว

    Thank you!

  • @noisyguest5249
    @noisyguest5249 4 ปีที่แล้ว +22

    Petition for bro code to add memes in his videos.

    • @BroCodez
      @BroCodez  4 ปีที่แล้ว +13

      You don't need a petition, you can just ask lol. Yea sure, I like memes

  • @HLWizard_GirlWizard
    @HLWizard_GirlWizard 3 ปีที่แล้ว

    How to add a label on top?

  • @kaushalprasadyadav9242
    @kaushalprasadyadav9242 2 ปีที่แล้ว

    👌👌👌👌👌

  • @francescoiaia2o
    @francescoiaia2o 4 ปีที่แล้ว

    nice video, but wouldn't be possible using a for loop for the buttons?

  • @khatri_17
    @khatri_17 ปีที่แล้ว

    you're great man!

  • @omar100k6
    @omar100k6 4 ปีที่แล้ว +2

    broCode is the man!

  • @chamindilhara5765
    @chamindilhara5765 3 ปีที่แล้ว

    Perfect Bro and...
    How to add border??

  • @eguchiyuuki
    @eguchiyuuki 3 ปีที่แล้ว

    great!!

  • @musoxoshimov4908
    @musoxoshimov4908 3 ปีที่แล้ว

    the best video tutorial👍

  • @tmro5356
    @tmro5356 2 ปีที่แล้ว

    Thank You Bro!

  • @marb1329
    @marb1329 2 ปีที่แล้ว

    why writing when you can do it on the swing interface graphic? seems you are just copying

  • @greeneggsandmushrooms9855
    @greeneggsandmushrooms9855 3 ปีที่แล้ว

    grid and bear it?

  • @riyazurrahmanm7049
    @riyazurrahmanm7049 2 ปีที่แล้ว

    Liked commented subscribed

  • @user-qh3nq8np5i
    @user-qh3nq8np5i ปีที่แล้ว

    a good video!

  • @javiertapia5310
    @javiertapia5310 2 ปีที่แล้ว

    Thank you.

  • @n.j.e452
    @n.j.e452 ปีที่แล้ว

    👍👍👍

  • @yeadatwunyt8004
    @yeadatwunyt8004 2 ปีที่แล้ว

    Lifesaver for sure

  • @algamdi07ful
    @algamdi07ful 2 ปีที่แล้ว

    thanks dude

  • @pradeepwijayawickrama507
    @pradeepwijayawickrama507 3 ปีที่แล้ว

    thank u dude. i wanna reach u. how can i contact u. pls gimme a mail

  • @henriquefelinimena3693
    @henriquefelinimena3693 3 ปีที่แล้ว

    thank you for the content

  • @angelcastineira2561
    @angelcastineira2561 2 ปีที่แล้ว

    thanks!

  • @ibrahimylmaz8378
    @ibrahimylmaz8378 2 ปีที่แล้ว

    thanks bro

  • @mahmodmardani7535
    @mahmodmardani7535 2 ปีที่แล้ว

    thanks bro... .

  • @kingkock1
    @kingkock1 2 ปีที่แล้ว

    brillant xx

  • @MrLoser-ks2xn
    @MrLoser-ks2xn 2 ปีที่แล้ว

    Thanks

  • @wolfsprinzessin2212
    @wolfsprinzessin2212 3 ปีที่แล้ว

    Thx for the vid

  • @sadhnamall8475
    @sadhnamall8475 2 ปีที่แล้ว

    Thankww so much 😊

  • @kemann3815
    @kemann3815 3 ปีที่แล้ว

    Its just perfect

  • @SlothfulSage285
    @SlothfulSage285 10 หลายเดือนก่อน

    Dropped comment

  • @dervisaliduman667
    @dervisaliduman667 3 ปีที่แล้ว

    thank you :D

  • @GkWithPratik
    @GkWithPratik 2 ปีที่แล้ว

    please make ludo game in java

  • @LoLRulet
    @LoLRulet 3 ปีที่แล้ว

    adamsin bro

  • @jakobmagnussen6156
    @jakobmagnussen6156 3 ปีที่แล้ว

  • @SLURPZZZ4461
    @SLURPZZZ4461 ปีที่แล้ว

    comment

  • @polizeimunchen5742
    @polizeimunchen5742 3 ปีที่แล้ว

    Hello Guys im a guy (C:

  • @ardcodelover
    @ardcodelover 2 ปีที่แล้ว

    Thanks