swing做透明的按钮校工具类

package com.zhong.tools;

import java.awt.Insets;

import javax.swing.JButton;

public class PicTransparent {
    /*
     * dwing实现按钮透明
     */
    public PicTransparent(){
    }
    public void Transparent(JButton button){
        button.setBorderPainted( false ); 
        button.setFocusPainted( false ); 
        button.setContentAreaFilled( false ); 
        button.setFocusable( true ); 
        button.setMargin( new Insets(0, 0, 0, 0)); 
    } 
}


你可能感兴趣的:(swing做透明的按钮校工具类)