示例#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)