When I try to add some function to get data from jtext field under public void actionPerformed(ActionEvent arg0) My GUI goes blank I have attached the images below I can't figure out what's wrong with it.
    import java.awt.BorderLayout;
    import java.awt.EventQueue;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.border.EmptyBorder;
    import javax.swing.JLabel;
    import javax.swing.JRadioButton;
    import javax.swing.JTextField;
    import javax.swing.JButton;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    public class Register extends JFrame {
        private JPanel contentPane;
        private JTextField textField;
        private JTextField textField_1;
        private JTextField textField_2;
        private JTextField textField_3;
        private JTextField textField_4;
        private JLabel lblNewLabel;
        /**
         * Launch the application.
         */
        public static void main(String[] args) {
            EventQueue.invokeLater(new Runnable() {
                public void run() {
                    try {
                        Register frame = new Register();
                        frame.setVisible(true);
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
                }
            });
        }
        /**
         * Create the frame.
         */
        public Register() {
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            setBounds(100, 100, 450, 300);
            contentPane = new JPanel();
            contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
            setContentPane(contentPane);
            contentPane.setLayout(null);
            JLabel lblName = new JLabel("Name");
            lblName.setBounds(56, 56, 56, 16);
            contentPane.add(lblName);
            JLabel lblUsername = new JLabel("Username");
            lblUsername.setBounds(56, 85, 77, 16);
            contentPane.add(lblUsername);
            JLabel lblPassword = new JLabel("Password");
            lblPassword.setBounds(56, 114, 56, 16);
            contentPane.add(lblPassword);
            JLabel lblAge = new JLabel("Age");
            lblAge.setBounds(56, 143, 56, 16);
            contentPane.add(lblAge);
            JLabel lblGender = new JLabel("Gender");
            lblGender.setBounds(56, 172, 56, 16);
            contentPane.add(lblGender);
            textField = new JTextField();
            textField.setBounds(130, 53, 116, 19);
            contentPane.add(textField);
            textField.setColumns(10);
            textField_1 = new JTextField();
            textField_1.setBounds(130, 82, 116, 22);
            contentPane.add(textField_1);
            textField_1.setColumns(10);
            textField_2 = new JTextField();
            textField_2.setBounds(130, 111, 116, 22);
            contentPane.add(textField_2);
            textField_2.setColumns(10);
            textField_3 = new JTextField();
            textField_3.setBounds(130, 140, 116, 22);
            contentPane.add(textField_3);
            textField_3.setColumns(10);
            textField_4 = new JTextField();
            textField_4.setBounds(130, 169, 116, 22);
            contentPane.add(textField_4);
            textField_4.setColumns(10);
            JButton btnSubmit = new JButton("Submit");
            btnSubmit.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent arg0) {
                }
            });
            btnSubmit.setBounds(169, 215, 97, 25);
            contentPane.add(btnSubmit);
            lblNewLabel = new JLabel("New label");
            lblNewLabel.setBounds(330, 56, 56, 16);
            contentPane.add(lblNewLabel);
        }
    }
EDIT 1: Added String name to action just to get name.
JButton btnSubmit = new JButton("Submit");
        btnSubmit.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent arg0) {
                String Name;
            }
        });
and This happened
GUI went blank:


 
     
    
