You are on page 1of 1

/*

* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license

* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template

*/

package Rebuild;

import static java.awt.Color.*;

import java.awt.*;

import javax.swing.*;

/**

* @author Tln.Ganyu

*/

public class CreateButton extends JButton{

public CreateButton(String text, ImageIcon icon, Color color) {

super(text, icon);

setFocusable(false);

// setBounds(25, 25, 100, 150);

setSize(150, 200);

setBackground(color);

setVerticalTextPosition(JButton.BOTTOM);

setHorizontalTextPosition(JButton.CENTER);

You might also like