Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

how to make an invisiblke button in swing

//Invisible/Transparent Button in swing
button.setOpaque(false);
button.setContentAreaFilled(false);
button.setBorderPainted(false);
 
PREVIOUS NEXT
Tagged: #invisiblke #button #swing
ADD COMMENT
Topic
Name
6+9 =