Is there a way to hide开发者_开发技巧 a jButton in Netbeans? (similar to button.visible = false in VS)
You are looking for, button.setVisible(false);
myButton.setVisible(false);
Is there a way to hide开发者_开发技巧 a jButton in Netbeans? (similar to button.visible = false in VS)
You are looking for, button.setVisible(false);
myButton.setVisible(false);
精彩评论