Passing a tuple between two Panels in wxPython
问题 I am trying to pass the tuple of the the checked strings in one panel to the textCtrl widget in another panel. I thought that if I polled the panel class containing the checklistbox widget for the checked boxes and set that equal to an attribute of the panel class containing the TextCtrl widget I could do things in the TextCtrl widget based on the boxes that are checked I also tried using pubsub but I was having difficulty and wasn't sure if this was the case that you would use it or not. As