Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
In Tkinter is there any way to make a widget not visible?

I have a label looks like:

Lab = Label(text = "Update ID")
Lab.pack(side = LEFT)

I want this label invisible but would like to make it visible when particular button is clicked.

I have a button looks like:

Button1 = Button(buttons, text = "Update Item", command = self.Update_item)
          Button6.pack(side = LEFT, padx = 5, pady = 3)

I want the label invisible but would like to make it visible when 'Button1' is clicked.

Any feedbacks would be appreciated.

share|improve this question
You have not even specified which gui library you are using. Are you familiar with gui programming in general? Obviously you have to bind an event to the button. What's exactly your problem? – Achim Oct 8 '12 at 9:31
@Achim: be careful about what you say -- binding to an event isn't obvious nor necessary in this case -- see the answers. – Bryan Oakley Oct 8 '12 at 10:45

marked as duplicate by Bryan Oakley, Junuxx, Martijn Pieters, ekhumoro, Don Kirkby Dec 21 '12 at 20:53

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 0 down vote accepted

There are a couple ways to accomplish this. For one, you can use the lift and lower attributes to change the stacking order. For example, if the label is a child of a frame and y ou lower it, it will go "behind" the frame and thus become invisible. T

A second option is to completely remove the label from the display. You can use grid_remove if you are using the grid geometry manager. The nice thing about this method is that grid remembers where the widget was, so to restore it you can call widget.grid() and all of the previous options (sticky, row, column, etc) will be used.

There is also pack_forget() and grid_forget(), but they have the disadvantage of truly forgetting about the widget. It is removed from the display and the information about where it was placed is forgotten. This means you must re-apply all of the proper options to get the widget to appear in the same place.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.