How to set the textfield is not visible in frame
问题 I am using Swing framework, and I have one question. The Address panel is dynamically added to the main frame. I want to call the visible(false) method from the main frame on the Address Panel. 回答1: What you need to do is store the JTextField as a private member of the AddressPanel . And, in AddressPanel , add a method called hideTextField() . Then, in that method call the setVisible(false) method on the private JTextField member. The code may look similar to the following: public class