Searched refs:grid_rowconfigure (Results 1 – 14 of 14) sorted by relevance
/external/python/cpython2/Lib/lib-tk/test/test_tkinter/ |
D | test_geometry_managers.py | 492 self.root.grid_rowconfigure(i, weight=0, minsize=0, pad=0, uniform='') 665 self.root.grid_rowconfigure() 666 self.assertEqual(self.root.grid_rowconfigure(0), 669 self.root.grid_rowconfigure(0, 'foo') 670 self.root.grid_rowconfigure((0, 3), weight=2) 673 self.root.grid_rowconfigure((0, 3)) 677 self.root.grid_rowconfigure('all', weight=3) 679 self.root.grid_rowconfigure('all') 680 self.assertEqual(self.root.grid_rowconfigure(0, 'weight'), 3) 681 self.assertEqual(self.root.grid_rowconfigure(3, 'weight'), 2) [all …]
|
/external/python/cpython3/Lib/tkinter/test/test_tkinter/ |
D | test_geometry_managers.py | 492 self.root.grid_rowconfigure(i, weight=0, minsize=0, pad=0, uniform='') 667 self.root.grid_rowconfigure() 668 self.assertEqual(self.root.grid_rowconfigure(0), 671 self.root.grid_rowconfigure(0, 'foo') 672 self.root.grid_rowconfigure((0, 3), weight=2) 675 self.root.grid_rowconfigure((0, 3)) 679 self.root.grid_rowconfigure('all', weight=3) 681 self.root.grid_rowconfigure('all') 682 self.assertEqual(self.root.grid_rowconfigure(0, 'weight'), 3) 683 self.assertEqual(self.root.grid_rowconfigure(3, 'weight'), 2) [all …]
|
/external/python/cpython2/Demo/tkinter/ttk/ |
D | listbox_scrollcmd.py | 32 root.grid_rowconfigure(0, weight=1)
|
D | treeview_multicolumn.py | 72 container.grid_rowconfigure(0, weight=1)
|
D | dirbrowser.py | 91 root.grid_rowconfigure(0, weight=1)
|
/external/python/cpython3/Lib/idlelib/ |
D | textview.py | 51 self.grid_rowconfigure(0, weight=1)
|
D | searchbase.py | 90 top.grid_rowconfigure(0, weight=100)
|
D | help.py | 246 self.grid_rowconfigure(0, weight=1)
|
/external/python/cpython2/Lib/idlelib/ |
D | help.py | 232 self.grid_rowconfigure(0, weight=1)
|
/external/python/cpython2/Demo/turtle/ |
D | turtleDemo.py | 60 root.grid_rowconfigure(1, weight=1)
|
/external/python/cpython3/Lib/turtledemo/ |
D | __main__.py | 150 root.grid_rowconfigure(0, weight=1)
|
/external/python/cpython2/Lib/lib-tk/ |
D | Tkinter.py | 1468 def grid_rowconfigure(self, index, cnf={}, **kw): member in Misc 1475 rowconfigure = grid_rowconfigure 2055 rowconfigure = grid_rowconfigure = Misc.grid_rowconfigure
|
/external/python/cpython3/Lib/tkinter/ |
D | __init__.py | 1799 def grid_rowconfigure(self, index, cnf={}, **kw): member in Misc 1807 rowconfigure = grid_rowconfigure 2514 rowconfigure = grid_rowconfigure = Misc.grid_rowconfigure
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.7rc1.rst | 338 Fixed grid_columnconfigure() and grid_rowconfigure() methods of Tkinter
|