pack forget

button .a \
   -text "aaa" \
   -command {pack forget .b}

button .b \
   -text "bbb" \

button .c \
   -text "ccc" \
   -command {pack .b}

  

pack .a

pack .c
pack .b

原文地址:https://www.cnblogs.com/greencolor/p/2165867.html