コード例 #1
0
ファイル: frame.py プロジェクト: chrisbiggar/shiny-light
 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
ファイル: layout.py プロジェクト: wty0512/micropylis
 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
ファイル: layout.py プロジェクト: wty0512/micropylis
 def delete(self):
     """Deletes all graphic elements within the layout."""
     for item in self.content:
         item.delete()
     Widget.delete(self)
コード例 #5
0
ファイル: layout.py プロジェクト: chrisbiggar/shiny-light
 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
ファイル: layout.py プロジェクト: chrisbiggar/shiny-light
 def delete(self):
     """Deletes all graphic elements within the layout."""
     for item in self.content:
         item.delete()
     Widget.delete(self)