Пример #1
0
 def delete(self):
     """Deletes graphic elements within the Wrapper."""
     if self.content is not None:
         self.content.delete()
     Widget.delete(self)
Пример #2
0
 def delete(self):
     """Deletes graphic elements within the Wrapper."""
     if self.content is not None:
         self.content.delete()
     Widget.delete(self)
Пример #3
0
 def delete(self):
     """Deletes all graphic elements within the layout."""
     for row in self.content:
         for cell in row:
             cell.delete()
     Widget.delete(self)
Пример #4
0
 def delete(self):
     """Deletes all graphic elements within the layout."""
     for item in self.content:
         item.delete()
     Widget.delete(self)
Пример #5
0
 def delete(self):
     """Deletes all graphic elements within the layout."""
     for row in self.content:
         for cell in row:
             cell.delete()
     Widget.delete(self)
Пример #6
0
 def delete(self):
     """Deletes all graphic elements within the layout."""
     for item in self.content:
         item.delete()
     Widget.delete(self)