Java checkbox ✔️

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

#Java #checkbox #JCheckBox #GUI #swing #tutorial #beginners

Coding boot camps hate him! See how you can teach you to code with this one weird trick...

Drop a comment down below and subscribe if you'd like to become a fellow bro.

This is a tutorial channel for beginners to learn how to code.

A few languages I plan on covering include, but are not limited to:

Python
Java
C#
C++
C
Javascript
HTML
CSS
Django
MySQL

and more probably...maybe

¯\_(ツ)_/¯
Рекомендации по теме
Комментарии
Автор


public class Main{

public static void main(String[] args) {

// JCheckBox = A GUI component that can be selected or deselected

new MyFrame();

}
}

import java.awt.FlowLayout;
import java.awt.Font;
import java.awt.event.ActionEvent;
import
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JFrame;

public class MyFrame extends JFrame implements ActionListener{

JButton button;
JCheckBox checkBox;
ImageIcon xIcon;
ImageIcon checkIcon;

MyFrame(){

this.setLayout(new FlowLayout());

xIcon = new ImageIcon("X.png");
checkIcon = new ImageIcon("checkmark.png");

button = new JButton();
button.setText("submit");


checkBox = new JCheckBox();
checkBox.setText("I'm not a robot");

checkBox.setFont(new Font("Consolas", Font.PLAIN, 35));
checkBox.setIcon(xIcon);


this.add(button);
this.add(checkBox);
this.pack();
this.setVisible(true);
}

@Override
public void actionPerformed(ActionEvent e) {
if(e.getSource()==button) {

}
}
}

BroCodez
Автор

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
Автор

The value of your videos is priceless, i bought lot of courses, but your format il awesome and it's free! Thank you bro! You're the best!

andreapaffi
Автор

Managed to create a matrix calculator and music player just by watching your vids man. You are awesome !
Really feels like something I can tackle, programming.

ricardochica
Автор

Bro, Good Job, I am watching all your videos without stopping, very amazing,

abdumalikumarov
Автор

You can also add the action listener to the checkbox so you don't need a button

cristoferfunes
Автор

Hey Bro, how about a .svg Tutorial series? That would be pretty interesting for a lot of people I guess...

slumdogskillionaire
Автор

I feel so lucky to find your channel! I'm not just learning stuff, but I'm enjoying watching this. I don't know why your channel is so underrated!!!

TheTCIP
Автор

I cannot add png to checkbox. Maybe because the png image size.But I already set the frame size 750* 750.

jianhe
Автор

hey man u r rocking all videos are crisp and it's to the point. i am eager for more gaming programs like snake. 😍😍😊😊

aravindkrishnan
Автор

These icons that you are using. Where do you get them Bro? Not able to find them in the internet!

tinyannadas
Автор

Hey bro do you have any video on Java with sql?
I am a big fan of you

C__MehrabEvan
Автор

What if instead of action listener, i have a fingerprint usb that only ticks the box IF the fingerprint matches. What do i write then?

bhfegwbr
Автор

I have a checkBox in my jFrame. So if this checkBox is not checked then I want an error message to be shown when I click on submit button. Means an error message should be shown if the checkBox is empty when clicked on submit button. Please help me

aryan
Автор

What if I want the text color to change when the checkbox is checked?

john
Автор

Hey bro I'm working on a fxml project. In that when few checkboxes are selected and a button is clicked, I need a new scene to load. Can you please help me with that?

bhargavdeep
Автор

Hello bro!! Love ur vid. Was wondering if u could help me something, its been a whole day, ive been trying. How do i write a code that has 2 checkboxes and a button.. the effect of pressing the button depends on which checkbox is checked. What do i write in the override function?? Plz help

yukz
Автор

Yo Bro 👌. What happened 2:10 ?
What can we do to help you 😘.

monwil
Автор

subbed - check, like - check, comment - check

greeneggsandmushrooms